@php // An array of terms and conditions [1] and an index page [2] //to prevent the administrator from deleting either one $ids = [1,2,3,4]; @endphp @foreach($pages as $key=> $row) @if(!in_array($row->id, $ids))
@endif {{ $row->title }} {{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} @if($row->deleted_at) @else @if(!in_array($row->id, $ids)) @endif @endif @endforeach @if( count( $pages ) ) {{ $pages->links() }} @endif