{{__('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.last_updated').':', ['class' => 'fw-bold text-muted py-3']) }} {{ $noticeBoard->updated_at->diffForHumans() }}
{{ Form::label('description', __('messages.notice_board.description').':', ['class' => 'fw-bold text-muted py-3']) }} {!! !empty($noticeBoard->description)? nl2br(e($noticeBoard->description)):'N/A' !!}