{{ __('common.apply_loan_details') }}

{{__('common.name')}} : {{ $loan->user != null ? $loan->user->name : "Removed" }}

{{__('common.title')}} : {{ $loan->title }}

{{__('common.department')}} : {{ @$loan->department->name }}

{{__('common.loan_type')}} : {{ $loan->loan_type }}

{{__('common.applied_date')}} : {{ date(app('general_setting')->dateFormat->format, strtotime($loan->apply_date)) }}

{{__('common.loan_date')}} : {{ date(app('general_setting')->dateFormat->format, strtotime($loan->loan_date)) }}

{{__('common.amount')}} : {{ single_price($loan->amount) }}

{{__('common.paid_loan_amount')}} : {{ single_price($loan->paid_loan_amount) }}

{{__('common.total_month')}} : {{ $loan->total_month }}

{{__('common.monthly_installment')}} : {{ single_price($loan->monthly_installment) }}

{{ $loan->note }}