@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

@php use Carbon\Carbon; @endphp @php $sn = 1; @endphp @foreach($customer_lottery as $customer_lott) @endforeach
Sl.No Lottery Tx Details Status
{{$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
@endsection