@extends('layouts.admin') @section('title', 'Latest Updates') @section('content')

Latest Updates

Small announcements that appear on your homepage in the Latest Updates strip.

+ Add Update
@if(session('success'))
{{ session('success') }}
@endif
@forelse($updates as $update) @empty @endforelse
Title Category Published Pinned Actions
{{ $update->title }} @if($update->excerpt)
{{ $update->excerpt }}
@endif
{{ $update->category ?? '—' }} @if($update->is_published) {{ optional($update->published_at)->format('d M Y') ?? 'Published' }} @else Draft @endif @if($update->is_pinned) Pinned @else @endif Edit
@csrf @method('DELETE')
No updates yet. Click “Add Update” to create your first announcement.
{{ $updates->links() }}
@endsection