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