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

Posts

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