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

Posts

Posts
@foreach ($posts as $post) @endforeach
Sl No Post Id Post Type User Statistics Post Date View
{{ $loop->iteration }} {{ $post->post_id ?? 'Unknown' }} {{ $post->postType->name ?? 'Unknown' }} {{ $post->user->name ?? 'Unknown' }} Statistics {{ \Carbon\Carbon::parse($post->postdate)->format('d M Y') }}
Back
@endsection @section('script') @endsection