@extends('layouts.dashboard') @section('style') @endsection @section('content') @php $i = 0;@endphp @foreach($fund as $p) @php $i++;@endphp @endforeach
Sl No Date Transaction ID Method Name Total Charge Amount Success Date Status Action
{{ $i }} {{ \Carbon\Carbon::parse($p->created_at)->format('d-F-y h:i:s A') }} {{ $p->log->transaction_id }} {{ $p->log->method->name }} {{ $basic->symbol }} {{ $p->log->total }} {{ $basic->symbol }} {{ $p->log->charge }} {{ $basic->symbol }} {{ $p->log->amount }} @if($p->made_time == null) Not Seen Yet. @else {{ \Carbon\Carbon::parse($p->made_time)->format('d-F-y h:i:s A') }} @endif @if($p->status == 0) Pending @elseif($p->status == 1) Completed @else Refunded @endif View
@endsection @section('scripts') @endsection