@extends('layout')
@section('title','User')
@section('content')
@include('user_card')
{{ $customer->created_at->format('d-M-Y') ?? '' }}
Joining Date
@php
@endphp
My Loteery Ticket History
| Sl.No |
Lottery |
Tx Details |
Status |
@php use Carbon\Carbon; @endphp
@php
$sn = 1;
@endphp
@foreach($customer_lottery as $customer_lott)
| {{$sn++}} |
{{$customer_lott->lottery_name}} |
{{ Carbon::parse($customer_lott->created_at)->format('d-m-y') }} |
@if($customer_lott->winner_status ==1) WON @else NO WIN @endif |
@endforeach
@endsection