@extends('layouts.app') @push('title') {{$title}} @endpush @section('content')

{{__($title)}}

@forelse ( $Allnotice as $notice )

{{\Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $notice->created_at)->format('jS, F, Y')}}

{{$notice->title}}

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

{{__('More Details')}}
@empty
{{__("NO Data Found")}}
@endforelse
@endsection