@extends('layouts.app') @section('heading','Grand Launching Events') @section('content')

Event workspace

Create, configure and monitor every grand launching from one place.

+ Create Event
Bulk event importUse the CSV template to prepare multiple launching events.
Download Template
@csrf
@php $sortUrl=function($column)use($sort,$direction){ $nextDirection=$sort===$column&&$direction==='asc'?'desc':'asc'; return route('events.index',array_merge(request()->query(),['sort'=>$column,'direction'=>$nextDirection,'page'=>1])); }; $sortMark=fn($column)=>$sort===$column?($direction==='asc'?'↑':'↓'):'↕'; @endphp
@if($search!=='')Clear@endif
@forelse($events as $e)@empty@endforelse
Event {{ $sortMark('title') }} Schedule {{ $sortMark('scheduled_at') }} Assigned VIPs {{ $sortMark('assigned_vips_count') }} VIP Progress {{ $sortMark('activation_count') }} Status {{ $sortMark('status') }}
{{ $e->title }}{{ $e->scheduled_at->format('d M Y, h:i A') }} @forelse($e->assignedVipsIncludingArchived as $vip){{ $vip->name }}@if($vip->trashed()) · archived @endif@emptyNot assigned@endforelse
{{ $e->activation_count }} / {{ $e->required_vip_count }}
{{ ucfirst($e->status) }}
Configure
@csrf @method('delete')
No events found@if($search!=='')Try a different search or clear the filter.@elseCreate your first launching event to get started.@endif
@if($events->total()>0) @endif
@endsection