@extends('backend.app') @section('title', 'Raffle Draw') @push('style') @endpush @section('content')
@forelse($raffles as $raffle) @php $statusClass = match($raffle->status) { 'pending' => 'status-pending', 'upcoming' => 'status-upcoming', 'in_progress' => 'status-in-progress', 'completed' => 'status-completed', default => 'status-upcoming', }; @endphp @empty @endforelse
# Property Status Sold Tickets Winner Action
{{ $raffle->id }} {{ $raffle->property->title ?? 'N/A' }} {{ ucwords(str_replace('_', ' ', $raffle->status)) }} {{ $raffle->active_tickets_count }} {{ $raffle->winner->name ?? 'N/A' }} Open Draw Screen
No raffle found.
@endsection @push('scripts') @endpush