@lang('app.bill')

@if (!is_null($expense->bill)) @lang('app.view') @lang('app.bill') @else -- @endif

@lang('app.employee')

@lang('app.status')

@if ($expense->status == 'pending') @elseif ($expense->status == 'approved') @else @endif

@lang('modules.expenses.approvedBy')

{{-- Custom fields data --}} @if (isset($fields)) @foreach ($fields as $field) @if ($field->type == 'text' || $field->type == 'password' || $field->type == 'number') @elseif($field->type == 'textarea') @elseif($field->type == 'radio') @elseif($field->type == 'checkbox') @elseif($field->type == 'select') @elseif($field->type == 'date') @endif @endforeach @endif