@extends('layouts.admin') @section('title', 'Latest Updates') @section('content')
Small announcements that appear on your homepage in the Latest Updates strip.
| 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 |
| No updates yet. Click “Add Update” to create your first announcement. | ||||