@extends('layouts.app') @section('content')
| {{ _lang('Deposit Plan') }} | {{ $fixeddeposit->plan->name }} |
| {{ _lang('User Account') }} | {{ $fixeddeposit->user->name }} |
| {{ _lang('Currency') }} | {{ $fixeddeposit->currency->name }} |
| {{ _lang('Deposit Amount') }} | {{ $fixeddeposit->deposit_amount }} |
| {{ _lang('Return Amount') }} | {{ $fixeddeposit->return_amount }} |
| {{ _lang('Attachment') }} | {!! $fixeddeposit->attachment == "" ? '' : ''._lang('Download').'' !!} |
| {{ _lang('Remarks') }} | {{ $fixeddeposit->remarks }} |
| {{ _lang('Status') }} | {!! xss_clean(fdr_status($fixeddeposit->status)) !!} |
| {{ _lang('Approved Date') }} | {{ $fixeddeposit->approved_date }} |
| {{ _lang('Mature Date') }} | {{ $fixeddeposit->mature_date }} |
| {{ _lang('Approved By') }} | {{ $fixeddeposit->approved_by->name }} |
| {{ _lang('Created By') }} | {{ $fixeddeposit->created_by->name }} |
| {{ _lang('Updated By') }} | {{ $fixeddeposit->updated_by->name }} |