@extends('layouts.app') @section('content')
{{-- Back To Listing --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{--
@csrf
--}}

Total Wallet Balance:

$ {{ @$wallet->amount ? @$wallet->amount : '0' }}

@isset($wallet_transactions) @if($wallet_transactions->count() > 0) @php $count = 1; @endphp @foreach ($wallet_transactions as $transaction) @endforeach
SL NO Amount Type(Credit/Debit) Date Ticket No Claim Status
{{ $count++ }} {{ @$transaction->amount }} @if (@$transaction->type == 1) Credit @elseif (@$transaction->type == 2) Debit @else N/A @endif {{ @$transaction->created_at->format('Y-m-d') }} {{ @$transaction->ticket_id }} --
{!! $wallet_transactions->links() !!} @else

No records found.

@endif\ @else

No records found.

@endisset
@push('scripts') @endpush @endsection