@extends('layouts.app') @section('content')
{{ _lang('FDR Report') }}
{{ csrf_field() }}
@php $date_format = get_option('date_format','Y-m-d'); @endphp @php $currency = currency(); @endphp

{{ _lang('FDR Report') }}

{{ isset($date1) ? date($date_format, strtotime($date1)).' '._lang('to').' '.date($date_format, strtotime($date2)) : '---------- '._lang('to').' ----------' }}
@if(isset($report_data)) @foreach($report_data as $fixeddeposit) @endforeach @endif
{{ _lang('Plan') }} {{ _lang('User') }} {{ _lang('AC Number') }} {{ _lang('Currency') }} {{ _lang('Deposit Amount') }} {{ _lang('Return Amount') }} {{ _lang('Status') }} {{ _lang('Mature Date') }} {{ _lang('Details') }}
{{ $fixeddeposit->plan->name }} {{ $fixeddeposit->user->name }}
{{ $fixeddeposit->user->email }}
{{ $fixeddeposit->user->account_number }} {{ $fixeddeposit->currency->name }} {{ $fixeddeposit->deposit_amount }} {{ $fixeddeposit->return_amount }} {!! xss_clean(fdr_status($fixeddeposit->status)) !!} {{ $fixeddeposit->mature_date }} {{ _lang('View') }}
@endsection