{{ Form::label('charge_type', __('messages.charge_category.charge_type').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{$chargeTypes[$charge->charge_type]}}
{{ Form::label('charge_category', __('messages.charge.charge_category').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $charge->chargeCategory->name}}
{{ Form::label('code', __('messages.charge.code').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $charge->code}}
{{ Form::label('standard_charge', __('messages.charge.standard_charge').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ getCurrencyFormat($charge->standard_charge) }}
{{ Form::label('created_at', __('messages.common.created_on').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $charge->created_at->diffForHumans() }}
{{ Form::label('updated_at', __('messages.common.updated_at').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {{ $charge->updated_at->diffForHumans() }}
{{ Form::label('description', __('messages.death_report.description').(':'), ['class' => 'pb-2 fs-5 text-gray-600']) }} {!! !empty($charge->description)?nl2br(e($charge->description)):'N/A' !!}