{{ __('Payment Import Log') }}

{{-- Search Bar --}}
@if (request('search')) {{ __('Clear') }} @endif
{{-- Payment Import Table --}}
@php $sortBy = request('sortBy', 'created_at'); $sortDirection = request('sortDirection', 'desc'); @endphp {{-- ID --}} {{-- Compound Number --}} {{-- Vehicle Number --}} {{-- Created At --}} @forelse ($paymentImports as $import) @empty @endforelse
ID @if ($sortBy === 'id') @else @endif Compound Number @if ($sortBy === 'compound_no') @else @endif Vehicle Number @if ($sortBy === 'vehicle_no') @else @endif Kod Hasil Message Amount Created At @if ($sortBy === 'created_at') @else @endif
{{ $import->id }} {{ $import->compound_no }} {{ $import->vehicle_no }} {{ $import->kod_hasil }} {{ Str::limit($import->msg ?? 'N/A', 70) }} RM {{ number_format($import->amount, 2) }} {{ $import->created_at->format('d/m/Y H:i') }}
No payment import records found.
{{-- Pagination --}}
{{ $paymentImports->links() }}