@extends(template().'layouts.user') @section('title',trans('Notice')) @section('content')

@lang("Notice")

@forelse($notices as $notice)
@lang(optional($notice->details)->title)
{{ dateTime($notice->created_at) }}

@lang("notice details")

{!! trans(optional($notice->details)->description) !!}

@empty @endforelse @if(count($notices) < 1)
Image Description

@lang("The notice is not available.")

@endif
@endsection