@extends('layouts.app-sidebar') @section('content')
{{-- Page Header --}} {{-- Current Giveaway Card --}}

Current Giveaway

{{-- No Active Giveaway State --}} {{-- Active Giveaway Details --}}
{{-- Two Column Layout: Entries & Settings --}}
{{-- Entries Table --}}

Recent Entries

{{-- Settings Panel --}}

Settings

{{-- Role Luck Multipliers --}}

Higher = more chance to win


{{-- Entry Settings --}}

Case Sensitive

Keyword matching

Each user can only enter once per giveaway

{{-- History Section --}}

Giveaway History

@if(!$history->isEmpty()) @endif
@if($history->isEmpty())

No past giveaways yet

@else
@foreach($history as $giveaway) @endforeach
Title Winner(s)
{{ $giveaway->title ?? 'Untitled' }} @if($giveaway->winners) {{ implode(', ', $giveaway->winners) }} @else No winner @endif
@endif
{{-- Start Giveaway Modal --}}
{{-- Title --}}
{{-- Mode Selection --}}
{{-- Keyword (only for keyword mode) --}}

Users type this to enter

{{-- Min Messages (only for active chatters mode) --}}

Messages needed during giveaway to qualify

{{-- Role Inclusion --}}
{{-- Exclude Bots --}}
Exclude Bots
{{-- Submit Buttons --}}
{{-- Toast Notification --}}
@endsection