@extends('admin.layouts.content') @section('content')
@include('components.card_header', ['title' => 'Bulletin Updates', 'create_title' => 'New Bulletin', 'create' => route('New Bulletin')])
Type
@forelse($bulletins as $bulletin) @empty @endforelse
# Bulletin Type Message Created At Action
{!! $bulletin->id !!} {!! optional($bulletin->header)->name !!} {!! nl2br($bulletin->message) !!} {!! $bulletin->created_at->format('F d, Y h:i A') !!}
No record(s) found.
@if($bulletins->hasPages()) @endif

@endsection