update studio links list blade

This commit is contained in:
aprillio 2021-07-06 15:52:40 +07:00
parent 9a3b44d4a9
commit c5bff25413
1 changed files with 8 additions and 4 deletions

View File

@ -8,19 +8,23 @@
<thead>
<tr>
<th scope="col">Link</th>
<th scope="col">Edit</th>
<th scope="col">Title</th>
<th scope="col">Click</th>
<th scope="col">Up Link</th>
<th scope="col">Order </th>
<th scope="col">Up Link </th>
<th scope="col">Edit</th>
<th scope="col">Delete</th>
</tr>
</thead>
<tbody>
@foreach($links as $link)
<tr>
<td title="{{ $link->link }}">{{ Str::limit($link->link, 30) }}</td>
<td><a href="{{ route('editLink', $link->id ) }}">Edit</a></td>
<td title="{{ $link->link }}">{{ Str::limit($link->link, 50) }}</td>
<td title="{{ $link->title }}">{{ Str::limit($link->title, 50) }}</td>
<td>{{ $link->click_number }}</td>
<td>{{ $link->order }}</td>
<td><a href="{{ route('upLink', ['up' => $link->up_link, 'id' => $link->id]) }}" class="text-primary">{{ $link->up_link }}</a></td>
<td><a href="{{ route('editLink', $link->id ) }}">Edit</a></td>
<td><a href="{{ route('deleteLink', $link->id ) }}" class="text-danger">Delete</a></td>
</tr>
@endforeach