@extends('mainlayout.layout') @section('title') Miliki | Transaction Logs @endsection @section('content')

Transaction Logs — Plot No: {{ $plot->plotnumber }} of [ {{ $property->name }} ]

Back to Plot
@if($referenceid)
Order Reference: {{ $referenceid }}
@else
No active order found for this plot. Transaction logs are unavailable.
@endif
@forelse($transactionLogs as $index => $log) @empty @endforelse
# Transaction ID Transaction Type Status Code Status Description MSISDN Amount Source Institution Source Account IP Device Created At
{{ ++$index }} {{ $log->transationid }} {{ $log->transactiontype }} {{ $log->statuscode }} {{ $log->statusdescription }} {{ $log->msisdn }} {{ $log->amount }} {{ $log->sourceInstitution }} {{ $log->sourceAccount }} {{ $log->ip }} {{ $log->device }} {{ $log->created_at }}
No transaction logs found for this order reference.
@endsection