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

Department Posts

{{-- Add Post Button --}}
+ Add Department Post
{{-- Entries/Per‑Page & Search --}}
{{-- Table --}}
@forelse($posts as $post) @empty @endforelse
Image Title Department Posted On Action
@if($post->image) {{ $post->title }} @else — @endif {{ $post->title }} {{ $post->department->name }} {{ $post->created_at->format('d/m/Y') }} Edit
@csrf @method('DELETE')
No posts found.
{{-- Pagination & Info --}}

Showing {{ $posts->firstItem() ?? 0 }} to {{ $posts->lastItem() ?? 0 }} of {{ $posts->total() }} entries

@endsection