@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Pages']) @endsection @section('content') @php $url=domain_info('full_domain'); @endphp @if(Session::has('error'))
@endif
@if($post_limit==true) {{ __('Add New') }} @endif
@csrf
@foreach($posts as $row) @endforeach
{{ __('Name') }} {{ __('Url') }} {{ __('Last Update') }}
{{ $row->title }} {{ $url.'/page/'.$row->slug.'/'.$row->id }} {{ $row->updated_at->diffForHumans() }}
{{ $posts->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush