@extends('admin::layouts.master') @section('title') Posts @endsection @section('breadcrumb') @php $breadcrumbData = [ [ 'title' => 'Posts', 'link' => 'null', ], [ 'title' => 'Dashboard', 'link' => route('dashboard'), ], [ 'title' => 'Posts', 'link' => null, ], ]; @endphp @include('admin::layouts.partials.breadcrumb', $breadcrumbData) @endsection @section('content')

List of Post

@foreach ($posts ?? [] as $post) @endforeach
S.N Title With Image Page Actions
#{{ $loop->iteration }}
Image
{{ $post->title }}
{{ Str::limit($post->short_detail, 80) }}
{{ optional($post->page)->title }}
{{ $posts->links('admin::layouts.partials.pagination') }}
@endsection