You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
3.6 KiB
PHTML

@extends('starter-kit::layouts.adminlayout')
@section('page_title')
{{__("Galleries")}}
-
@endsection
@section('content')
<div class="container">
@include('starter-kit::component.err')
<div class="alert alert-dark">
<span>
{{__("Filter")}}:
</span>
<a href="{{route('admin.gallery.all')}}" class="btn btn-dark" data-filter="all" >
{{__("All")}}
</a>
<a href="?filter=0" data-filter="0" class="btn btn-dark filter">
{{__("Drafted")}}
</a>
<a href="?filter=1" data-filter="1" class="btn btn-dark filter">
{{__("Published")}}
</a>
</div>
<form action="{{route('admin.gallery.bulk')}}" method="post" class="bulk-action">
@csrf
<table class="table table-striped table-bordered ">
<thead class="thead-dark">
<tr>
<th>
<input type="checkbox" class="chkall"/>
</th>
<th>
{{__("Image")}}
</th>
<th>
{{__("Title")}}
</th>
<th>
{{__("Status")}}
</th>
<th>
{{__("Action")}}
</th>
</tr>
</thead>
<tbody>
@foreach ($galleries as $n)
<tr>
<td>
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
{{$n->id}}
</td>
<td>
@if($n->getMedia()->count() > 0)
<img src="{{$n->imgurl()}}" class="feature-image" alt="">
@endif
</td>
<td>
{{$n->title}}
</td>
<td>
<div class="status posts-status-{{$n->status}}"></div>
</td>
<td>
<a href="{{route('admin.gallery.edit',$n->slug)}}" class="btn btn-primary">
<i class="ri-edit-2-line"></i>
</a>
<a href="{{route('admin.gallery.delete',$n->slug)}}"
class="btn btn-danger delete-confirm">
<i class="ri-close-line"></i>
</a>
@if(config('app.xlang'))
<a href="{{route('admin.lang.model',[$n->id,\Xmen\StarterKit\Models\Gallery::class])}}"
class="btn btn-outline-dark translat-btn">
<i class="ri-translate"></i>
</a>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
@include('starter-kit::component.bulk',['actions' =>['draft' => __("Draft now"),'publish' => __("Publish now")]])
</form>
<div class="text-center pt-3">
{{$galleries->links()}}
</div>
<a class="btn-add" href="{{route('admin.gallery.create')}}">
<i class="ri-add-line"></i>
</a>
</div>
@endsection