@section('site_title', formatTitle([__('Pages'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Pages')], ]])

{{ __('Pages') }}

{{ __('New') }}
{{ __('Pages') }}
@include('shared.message') @if(count($pages) == 0) {{ __('No results found.') }} @else
{{ __('Name') }}
@foreach($pages as $page) @endforeach
{{ __('Showing :from-:to of :total', ['from' => $pages->firstItem(), 'to' => $pages->lastItem(), 'total' => $pages->total()]) }}
{{ $pages->onEachSide(1)->links() }}
@endif