@extends('dlayout')
@section('content')
system_id |
Transaction id |
User name |
Telephone number |
names |
amount |
Transaction Type |
Status |
date |
@foreach($transactions as $tran)
{{ $tran->id }} |
{{ $tran->transaction_id }} |
{{ $tran->user_id }} |
{{ $tran->telephone_no }} |
{{ $tran->names }} |
{{ $tran->amount }} |
{{ $tran->description }} |
{{ $tran->transaction_type }}
@if ($tran->transaction_type== "Pending")
@else
@endif
|
{{ $tran->created_at }} |
@endforeach
{{-- Pagination --}}
@endsection