@extends('layouts.app') @section('heading','Grand Launching Events') @section('content')
| 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) }} | |
No events found@if($search!=='')Try a different search or clear the filter.@elseCreate your first launching event to get started.@endif | |||||