@extends('layouts.app') @section('content')
Review the data before importing
| Date | Type | Revenue | Fees | Net |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($transaction['order_date'])->format('Y-m-d') }} | @if($transaction['type'] === 'Order') Order @elseif($transaction['type'] === 'Refund') Refund @else {{ $transaction['type'] }} @endif | RM {{ number_format($transaction['total_revenue'], 2) }} | RM {{ number_format(abs($transaction['total_fees']), 2) }} | RM {{ number_format($transaction['net_settlement'], 2) }} |
Showing 10 of {{ number_format(count($result['transactions'])) }} transactions
@endif