{{ Auth::user()->name }}
{{ Auth::user()->country_code }} {{ Auth::user()->phone }}
{{ Auth::user()->email }}
Total Tickets Placed:{{ @$total_ticket ? $total_ticket : 0 }}
Total Tickets Won: {{ @$wonTicketsCount ? $wonTicketsCount : 0 }}
No Match:{{ @$lostTicketsCount ? $lostTicketsCount : 0 }}
--}}
{{-- @else
@endif --}}
{{-- Name: {{ Auth::user()->name }}
--}} {{--{{ Auth::user()->email }}
{{ Auth::user()->country_code }} {{ Auth::user()->phone }}
| SL NO | Ticket No | Ticket Date | Draw Date | Result | Claim Amount | Claim Status | Action |
|---|---|---|---|---|---|---|---|
| {{ ++$loop->index }} | {{ $ticket->ticket_code }} | {{ $ticket->created_at->format('Y-m-d') }} | {{ getGameDetailById($ticket->game_id, 'game_draw_date')}} | @php $game = getGameDetailById($ticket->game_id, 'result_publish'); @endphp @if ($game == 1) Published @else Waiting @endif |
@if (count($amount) > 0 && $game == 1)
@foreach ($amount as $amnt)
$ {{ $amnt }} @endforeach @elseif (count($amount) == 0 && $game == 1) No Amount Available @else $ 0 @endif |
@if ($ticket->is_claimed == 1) Claimed @elseif($ticket->is_claimed == 2) Pending @else Not Applicable @endif | @if ($game == 1) @foreach ($amount as $amnt) @if($amnt > 0) @if($ticket->is_claimed == 1) Claimed @elseif($ticket->is_claimed == 2) Claim Requested @else Click To Claim @endif @endif @endforeach @endif |
| No records found | |||||||
| 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 }} | @if ($transaction->status == 1) Claimed @else -- @endif |
No records found.
@endif