Initial Commit
This commit is contained in:
104
resources/views/livewire/admin/posts.blade.php
Normal file
104
resources/views/livewire/admin/posts.blade.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<div>
|
||||
<div class="pd-20 card-box mb-30">
|
||||
<div class="row mb-20">
|
||||
<div class="col-md-4">
|
||||
<label for="search"><b class="text-secondary">Suche:</b></label>
|
||||
<input wire:model.live="search" id="search" type="text" class="form-control"
|
||||
placeholder="Suche Posts..." />
|
||||
</div>
|
||||
@if (auth()->user()->type == 'superAdmin')
|
||||
<div class="col-md-2">
|
||||
<label for="author"><b class="text-secondary">Author:</b></label>
|
||||
<select wire:model.live="author" id="author" class="custom-select form-control">
|
||||
<option value="">Keine Ausgewählt</option>
|
||||
@foreach (App\Models\User::whereHas('posts')->get() as $user)
|
||||
<option value="{{ $user->id }}">{{ $user->name }}</option>
|
||||
@endforeach
|
||||
|
||||
</select>
|
||||
</div>
|
||||
@endif
|
||||
<div class="col-md-2">
|
||||
<label for="category"><b class="text-secondary">Kategorie:</b></label>
|
||||
<select wire:model.live="category" id="category" class="custom-select form-control">
|
||||
<option value="">Keine Ausgewählt</option>
|
||||
{!! $categories_html !!}
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label for="visibility"><b class="text-secondary">Sichtbarkeit:</b></label>
|
||||
<select wire:model.live="visibility" id="visibility" class="custom-select form-control">
|
||||
<option value="">Keine Ausgewählt</option>
|
||||
<option value="public">Öffentlich</option>
|
||||
<option value="private">Privat</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label for="sort"><b class="text-secondary">Sortiert nach:</b></label>
|
||||
<select wire:model.live="sortBy" id="sort" class="custom-select form-control">
|
||||
<option value="asc">Aufsteigend sortiert</option>
|
||||
<option value="desc">Absteigend sortiert</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-auto table-sm">
|
||||
<thead class="bg-secondary text-white">
|
||||
<th scope="col">#ID</th>
|
||||
<th scope="col">Image</th>
|
||||
<th scope="col">Titel</th>
|
||||
<th scope="col">Author</th>
|
||||
<th scope="col">Kategorie</th>
|
||||
<th scope="col">Sichtbar</th>
|
||||
<th scope="col">Action</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@forelse ($posts as $item)
|
||||
<tr>
|
||||
<td scope="row">{{ $item->id }}</td>
|
||||
<td>
|
||||
<img src="/images/posts/resized/resized_{{ $item->featured_image }}" width="100"
|
||||
alt="{{ $item->featured_image }}" />
|
||||
</td>
|
||||
<td>{{ $item->title }}</td>
|
||||
<td>{{ $item->author->name }}</td>
|
||||
<td>{{ $item->post_category->name }}</td>
|
||||
<td>
|
||||
@if ($item->visibility == 1)
|
||||
<span class="badge badge-pill badge-success">
|
||||
<i class="icon-copy ti-world"></i> Public
|
||||
</span>
|
||||
@else
|
||||
<span class="badge badge-pill badge-warning">
|
||||
<i class="icon-copy ti-lock"></i> Privat
|
||||
</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<div class="table-actions">
|
||||
<a href="{{ route('admin.edit_post', ['id' => $item->id]) }}" data-color="#265ed7"
|
||||
style="color: rgb(38,94,215)">
|
||||
<i class="icon-copy dw dw-edit2"></i>
|
||||
</a>
|
||||
<a href="javascript:;" wire:click="deletePost({{ $item->id }})"
|
||||
data-color="#e95959" style="color: rgb(233,89,89)">
|
||||
<i class="icon-copy dw dw-delete-3"></i>
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@empty
|
||||
<tr>
|
||||
<td colspan="7">
|
||||
<span class="text-danger">Keine Post(s) gefunden! </span>
|
||||
</td>
|
||||
</tr>
|
||||
@endforelse
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="block mt-1">
|
||||
{{ $posts->links('livewire::bootstrap') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user