@extends('admin.include.main') @section('content')
@if($notice->isEmpty())

No Any Notice Published

@else
@foreach($notice as $not) @endforeach
S.No Title Description Published Action
{{$loop->index+1}} {{$not->title}} {{$not->description}} @if ($not->published) @else @endif {{-- --}}
@endif
{{-- //notice view modal --}} {{-- //notice delete modal --}} @endsection