@extends('layouts.millage') @section('title', $title) @section('content')
Swapping History
@forelse($transactions as $tran) @empty @endforelse
Source Destination Amount(src) Quantity(dest) Date
{{ $tran->source }} {{ $tran->dest }} {{ round(number_format($tran->amount, 2, '.', ','), 6) }} {{ round($tran->quantity, 6) }} {{ \Carbon\Carbon::parse($tran->created_at)->toDayDateTimeString() }}
No record available
{{ $transactions->links() }}
@endsection