@extends('admin.layouts.app') @section('content')

{{ __('All Page')}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Title')}} {{ __('Author')}} {{__('Date')}} {{__('Status')}}
{{$row->title}} @if(setting_item('home_page_id') == $row->id)
{{__("Homepage")}}
@endif
@if(!empty($row->author)) {{$row->author->getDisplayName()}} @else {{__("[Author Deleted]")}} @endif {{ display_date($row->updated_at)}} {{ $row->status }}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection