@extends('layouts.app') @section('title', 'All Notices') @section('content')

সকল নোটিশ

@forelse($notices as $notice) @empty @endforelse
Date Title Download
@if($notice->published_at)
{{ $notice->published_at->format('d') }} {{ $notice->published_at->format('M -Y') }}
@else N/A @endif
@if($notice->page_id) {{ $notice->title }} @else {{ $notice->title }} @endif @if($notice->file) @elseif($notice->link) @endif

No notices found.

{{ $notices->links() }}
@endsection