@extends('layouts.app') @section('title', 'Vendor Wallet History') @section('content')

Vendor Wallet History

@forelse($records as $record) @empty @endforelse
Record Type ID Transaction Amount Withdrawal Amount Remaining Amount Type Description Date
{{ $record->record_type }} {{ $record->id }} {{ $record->amount }} {{ $record->withdrawal_amount }} {{ $record->remaining_amount }} {{ $record->type ?? '-' }} {{ $record->description ?? '-' }} {{ \Carbon\Carbon::parse($record->date)->format('Y-m-d H:i') }}
No wallet records found.
@endsection @section('scripts') @endsection