@extends('admin.layouts.app') @section('content')
Winning Numbers
Draw Prize
@php $countStatusOne = 0; // Initialize the count variable @endphp @for ($j = $i; $j < min($i + 6, count($ticket_sequence)); $j++) @if($ticket_sequence[$j]->status == 1) {{-- Add any logic or display for status 1 records here --}} @php $countStatusOne++; // Increment the count for each status 1 record @endphp @endif @endfor {{--Total Count: {{ $countStatusOne }}
--}} @if($countStatusOne > 0) @foreach ($result_check as $result) @if ($result->number_range == $countStatusOne){{ $result->description }}
{{-- Add any logic or display for the matching result_check here --}} @endif @endforeach @elseSorry No number matched. You Lost !
@endif