@extends('layouts.admin') @section('title','View local Transfer Requests') @section('styles') @endsection @section('header')
@endsection @section('content')

local Transfer Requests

View All Requests

@foreach($transfers as $transfer) @endforeach
TrX ID User Amount Time Status Action
TrX ID User Amount Time Status Action
{{$transfer->trx_id}} {{$transfer->user->username}} ${{$transfer->debit_amount + 0}} {{ date('F j, Y, h:i:s A', strtotime($transfer->created_at)) }} @if($transfer->status == 0) Pending @elseif($transfer->status == 1) Approved @else Declined @endif
@endsection @section('scripts') @endsection