{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}}
{{-- table content --}}
| {{__('admin.title')}} |
{{__('admin.content')}} |
{{__('admin.control')}} |
@foreach ($pages as $pages)
| {{ $pages->title }} |
{{ Str::limit($pages->content, 100) }} |
|
@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 )