@extends('frontend.layouts.app') @push('title') {{ $title }} @endpush @section('content')
@forelse ( $allNotice as $notice )

{{ date('M d, Y', strtotime($notice->created_at)) }}

{{ $notice->title }}

{{getSubText($notice->details, 300)}}

@empty

{{__('No Notice Found')}}

@endforelse
{{$allNotice->links()}}
@endsection