@extends('layouts.millage') @section('title', $title) @section('content')
Transaction Records
@foreach ($deposits as $deposit) @endforeach
Amount Payment mode Status Date created
{{ $settings->currency }}{{ $deposit->amount }} {{ $deposit->payment_mode }} @if ($deposit->status == 'Processed') {{ $deposit->status }} @else {{ $deposit->status }} @endif {{ \Carbon\Carbon::parse($deposit->created_at)->toDayDateTimeString() }}
@foreach ($withdrawals as $withdrawal) @endforeach
Amount requested Amount + charges Recieving mode Status Date created
{{ $settings->currency }}{{ $withdrawal->amount }} {{ $settings->currency }}{{ $withdrawal->to_deduct }} {{ $withdrawal->payment_mode }} @if ($withdrawal->status == 'Processed') {{ $withdrawal->status }} @else {{ $withdrawal->status }} @endif {{ \Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString() }}
@foreach ($t_history as $history) @endforeach
Amount Type Plan/Narration Date created
{{ $settings->currency }}{{ $history->amount }} {{ $history->type }} {{ $history->plan }} {{ \Carbon\Carbon::parse($history->created_at)->toDayDateTimeString() }}
@endsection