LinkStack/resources/views/studio/links.blade.php

47 lines
1.8 KiB
PHP
Raw Normal View History

2021-04-16 01:00:00 +02:00
@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-link-45deg"> Links</i></h2>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Link</th>
2021-07-06 10:52:40 +02:00
<th scope="col">Title</th>
2021-04-16 01:00:00 +02:00
<th scope="col">Click</th>
2021-07-06 10:52:40 +02:00
<th scope="col">Order </th>
2022-04-12 00:12:00 +02:00
<th scope="col">Pin Link </th>
2021-07-06 10:52:40 +02:00
<th scope="col">Edit</th>
@if(env('ENABLE_BUTTON_EDITOR') === true)<th scope="col">Button Editor<span style="color:tomato">&nbsp; beta</span></th>@endif
2021-04-16 01:00:00 +02:00
<th scope="col">Delete</th>
</tr>
</thead>
<tbody>
@foreach($links as $link)
<tr>
<td title="{{ $link->link }}">{{ Str::limit($link->link, 30) }}</td>
<td title="{{ $link->title }}">{{ Str::limit($link->title, 30) }}</td>
<td class="text-right">{{ $link->click_number }}</td>
<td class="text-right">{{ $link->order }}</td>
2021-04-16 01:00:00 +02:00
<td><a href="{{ route('upLink', ['up' => $link->up_link, 'id' => $link->id]) }}" class="text-primary">{{ $link->up_link }}</a></td>
2021-07-06 10:52:40 +02:00
<td><a href="{{ route('editLink', $link->id ) }}">Edit</a></td>
@if(env('ENABLE_BUTTON_EDITOR') === true)
@if($link->button_id == 1 or $link->button_id == 2)
<td><a href="{{ route('editCSS', $link->id ) }}" class="text-success">Customize Button</a></td>
@else
<td><a> - </a></td>
@endif
@endif
2021-04-16 01:00:00 +02:00
<td><a href="{{ route('deleteLink', $link->id ) }}" class="text-danger">Delete</a></td>
</tr>
@endforeach
</tbody>
</table>
<ul class="pagination justify-content-center">
{!! $links ?? ''->links() !!}
</ul>
@endsection