@php $b=0; @endphp
@foreach($all_page as $key => $pages)
{{__('ID')}} |
{{__('Title')}} |
{{__('Date')}} |
{{__('Status')}} |
{{__('Action')}} |
@foreach($pages as $data)
{{$data->id}} |
{{$data->title}} |
{{$data->created_at->diffForHumans()}} |
@if($data->status == 'publish')
{{__('Publish')}}
@else
{{__('Draft')}}
@endif
|
|
@endforeach
@php $b++; @endphp
@endforeach