@extends('master.app') @section('title', 'Transaction Details') @section('body')
Transaction #{{ $row->id }}
Date{{ $row->date }}
Customer{{ $row->customer->name ?? ('Customer #'.$row->customer_id) }}
Employee{{ $row->employee->name ?? $row->employee->full_name ?? ('Employee #'.$row->employee_id) }}
Direction{{ strtoupper($row->direction) }}
Type{{ $row->type }}
Amount{{ number_format($row->amount ?? 0,2) }}
Currency{{ $row->currency->title_en ?? $row->currency->title_ps ?? 'N/A' }}
Ex Rate{{ number_format($row->ex_rate ?? 1,4) }}
Reference{{ $row->reference }}
Payment Method{{ $row->payment_method }}
Details{{ $row->details }}
Created By{{ $row->creator->name ?? 'N/A' }}
@endsection