fanatic/resources/views/livewire/admin/list-fanlistings.blade.php

52 lines
1.5 KiB
PHP
Raw Normal View History

2022-04-25 19:50:01 -07:00
<div>
2022-04-26 20:35:32 -07:00
<input type="text" name="search" placeholder="Search fanlistings..." class="form__input--search"
wire:model="searchTerm" />
2022-04-25 19:50:01 -07:00
<table class="table">
<thead class="table__thead">
<tr>
<th>{{-- approved --}}</th>
<th>Subject</th> {{-- link --}}
<th>Categories</th>
<th>Image</th>
<th colspan="3">Actions</th>
</tr>
</thead>
<tbody class="table__tbody">
@foreach ($fanlistings as $fl)
<tr>
<td>
@if (!$fl->approved)
<span class="text--error">&times;</span>
@endif
</td>
<td><a href="{{ $fl->url }}" target="_blank">{{ $fl->subject }}</a></td>
<td>{{ $fl->listCategories() }}</td>
<td><img src="{{ $fl->image }}"></td>
<td>
2022-04-26 11:15:27 -07:00
@if ($class == 'joined' && $fl->approved == false)
<button wire:click="approve({{ $fl }})" class="btn--table">
2022-04-25 19:50:01 -07:00
Approve
2022-04-26 11:15:27 -07:00
</button>
2022-04-25 19:50:01 -07:00
@elseif ($class == 'owned')
<a href="#" class="btn--table">View</a>
@endif
</td>
<td>
<a href="{{ route("admin.$class.edit", $fl) }}" class="btn--table">Edit</a>
</td>
<td>
<x-admin.form.destroy :object="$fl" :route="'admin.'.$class.'.destroy'"
:btnClass="'btn--table'"/>
</td>
</tr>
@endforeach
</tbody>
</table>
{{ $fanlistings->links() }}
</div>