@extends('layouts.app') @section('content')
{{ __('Dashboard') }} > {{ __('Raffle Draw') }}
{{-- --}}
{{--
@csrf {{-- --}
--}}
Draw List
@foreach ($prizes as $prize) @endforeach
Sl.No Category Prize Total Count Pending Draw
{{ $loop->index + 1 }} {{ $prize->category->name }} {{ $prize->prize }} {{ $prize->total_count }} {{ $prize->pending }} @if ($prize->pending >0) Raffle Draw @endif
{{-- --}}
Week List
{{-- --}} @foreach($weeks as $week) {{-- --}} @endforeach
Sl.No Week DateStatusActions
{{ $loop->index+1 }} {{ $week->prize_week }} {{ $week->prize_date }} @if($week->status==0) @else @endif

@if($week->active_status==0) @endif

@endsection @section('scripts') @endsection