@extends('layouts.dash') @section('title', $title) @section('content')
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() }} |
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() }} |
Amount | Type | Plan/Narration | Date created |
---|---|---|---|
{{ $settings->currency }}{{ $history->amount }} | {{ $history->type }} | {{ $history->plan }} | {{ \Carbon\Carbon::parse($history->created_at)->toDayDateTimeString() }} |