{{__('messages.notice_board.details')}}

{{ Form::label('title', __('messages.notice_board.title').(':'), ['class' => 'fw-bold text-muted py-3']) }} {{ $noticeBoard->title}}
{{ Form::label('created_at', __('messages.common.created_on').(':'), ['class' => 'fw-bold text-muted py-3']) }} {{ $noticeBoard->created_at->diffForHumans() }}
{{ Form::label('updated_at', __('messages.common.updated_at').(':'), ['class' => 'fw-bold text-muted py-3']) }} {{ $noticeBoard->updated_at->diffForHumans() }}
{{ Form::label('message', __('messages.notice_board.description').(':'), ['class' => 'fw-bold text-muted py-3']) }} {!! !empty($noticeBoard->description)?nl2br(e($noticeBoard->description)):__('messages.common.n/a') !!}