@extends('layouts.dash') @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(floatval(str_replace(',', '', number_format($tran->amount, 2, '.', ''))), 6) }} {{ round($tran->quantity, 6) }} {{ \Carbon\Carbon::parse($tran->created_at)->toDayDateTimeString() }}
No record available
{{$transactions->links()}}
@endsection