@extends('components.customer-layout') @section('header')

Transaction History

@endsection {{-- @dd($transactionsPagination, $transactions) --}} @section('content') {{-- description --}}
Records
@if ($transactions) {{-- --}} @foreach ($transactions as $index => $transaction) @php $color = !empty(config('app.tx_color')[$transaction['type']]) ? config('app.tx_color')[$transaction['type']] : "info"; $icon = !empty(config('app.tx_icon')[$transaction['type']]) ? config('app.tx_icon')[$transaction['type']] : "bi bi-lightning-fill"; @endphp @endforeach
S.No Name USD Amount FLT Amount Status DateAction
{{ $index + 1 }}
  {{ $transaction->type }}
${{ number_format($transaction->amount , 2, ".", "," ) }} {{ number_format($transaction->flt_value , 2, ".", ",") }} {{ $transaction->status }}
{{ date('d M,Y', strtotime($transaction->createdAt)) }}
@else @endif
@endsection