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

51 lines
1.9 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>
2022-05-09 17:46:20 +02:00
<div style="overflow-y: auto;">
2021-04-16 01:00:00 +02:00
<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>
2022-07-11 13:44:52 +02:00
<th scope="col">Clicks</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</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>
2022-05-09 17:46:20 +02:00
</div>
2021-04-16 01:00:00 +02:00
<ul class="pagination justify-content-center">
{!! $links ?? ''->links() !!}
</ul>
<a class="btn btn-primary" href="{{ url('/studio/add-link') }}">Add a link</a>
2021-04-16 01:00:00 +02:00
@endsection