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

Notice List

Add Notice
@if(session('success'))
{{ session('success') }}
@endif @forelse($notices as $key => $notice) @empty @endforelse
SL Title Image Status Publish At Action
{{ $notices->firstItem() + $key }} {{ $notice->title }} @if($notice->image) @else No Image @endif @if($notice->status == 'published') Published @else Draft @endif {{ $notice->publish_at ? $notice->publish_at->format('d M Y h:i A') : '-' }} Show Edit
@csrf @method('DELETE')
No notice found.
{{ $notices->links() }}
@endsection