@extends('layouts.frontend.app') @push('style') @endpush @section('content')
{{ __('Start Date') }} {{ __('End Date') }} {{ __('Member') }} {{ __('Account') }} {{ __('Scheme') }} {{ __('Type') }} {{ __('Amount') }} {{ __('Profit Get') }} {{ __('Profit Paid') }} {{ __('Receivable Profit') }} {{ __('Status') }}
{{ $fdr->starting_date }} {{ $fdr->ending_date }} {{ $fdr->member->m_name }} {{ $fdr->account }} {{ $fdr->scheme->name }} {{ $fdr->scheme->type == 1 ? 'Fixed' : 'Monthly' }} {{ $fdr->amount }} {{ $fdr->total_profit }} {{ $fdr->total_withdraw }} {{ $fdr->receiveable_amount }} @if ($fdr->status == true) {{ __('Active') }} @else {{ __('Inactive') }} @endif
@csrf
{{ __('FDR Statement Report') }}
@foreach ($fdr->profit()->get()->sortByDesc('id') as $profit) @endforeach
# {{ __('Date') }} {{ __('Profit') }} {{ __('Withdraw') }} {{ __('Balance') }} {{ __('Note') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $profit->date }} {{ $profit->profit }} {{ $profit->withdraw }} {{ $profit->balance }} {{ $profit->note }} {{ __('No action') }}
@endsection