@extends('layouts.app') @section('title', 'Transfer History') @section('content')
View all your credit transfers
Date | Type | User | Note | Amount | Status | Action |
---|---|---|---|---|---|---|
{{ $transfer->created_at->format('M j, Y') }}
{{ $transfer->created_at->format('H:i') }}
|
@if($isSender) Sent @else Received @endif |
{{ $otherUser->username }}
{{ $isSender ? 'To' : 'From' }} {{ $otherUser->username }}
|
@if($transfer->note)
{{ $transfer->note }}
@else
No note
@endif
|
{{ $isSender ? '-' : '+' }}₦{{ number_format($transfer->amount) }} | {{ ucfirst($transfer->status) }} | View Details |