@extends('layouts.admin') @section('title','View Foreign Transfer Requests') @section('styles')
@endsection @section('header')
@endsection @section('content')
Foreign Transfer Requests
View All Requests
@foreach($transfers as $transfer) @endforeach
TrX ID
User
Amount
Time
Action
TrX ID
User
Amount
Time
Action
{{$transfer->trx_id}}
{{$transfer->user->username}}
${{$transfer->debit_amount + 0}}
{{ date('F j, Y, h:i:s A', strtotime($transfer->created_at)) }}
@endsection @section('scripts') @endsection