{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}}
{{-- table content --}}
| {{__('admin.title')}} |
{{__('admin.content')}} |
{{__('admin.control')}} |
@foreach ($pages as $page)
| {{ $page->title }} |
{!! Str::limit($page->content, 100) !!} |
@haspermission('admin.pages.show')
@endhaspermission
@haspermission('admin.pages.edit')
@endhaspermission
|
@endforeach
{{-- table content --}}
{{-- no data found div --}}
@if ($pages->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif
{{-- no data found div --}}
{{-- pagination links div --}}
@if ($pages->count() > 0 && $pages instanceof \Illuminate\Pagination\AbstractPaginator )