@extends('adminlte::page') @section('content')

Notice Management

List of Notice


@if(session('success')) @endif
@php $i = 0; $i++; @endphp @foreach($notices as $notice) @endforeach
ID Title Description Image Link Start Date Time End Date Time Visibility Status Actions
{{ $i++}} {{ $notice->title }} {!! $notice->description !!} Existing Image {{ $notice->link }} {{ $notice->start_date_time }} {{ $notice->end_date_time }} {{ ucfirst($notice->visibility) }} {{ $notice->status == 1 ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@stop