@extends('layouts.app') @section('title', 'Events Management') @section('navigation') Dashboard Settings Events Widgets @endsection @section('content')
Control which events are visible on your storefront and mark events as featured.
| Event | Date | Location | Visible | Featured | Actions |
|---|---|---|---|---|---|
|
{{ $event['title'] ?? 'Untitled Event' }}
@if($event['description'] ?? '')
{{ Str::limit(strip_tags($event['description']), 80) }} @endif |
@if($event['start_date'] ?? '')
{{ \Carbon\Carbon::parse($event['start_date'])->format('M j, Y') }}
@if($event['start_time'] ?? '')
{{ \Carbon\Carbon::parse($event['start_time'])->format('g:i A') }} @endif @else TBD @endif |
@if($event['location'] ?? '')
{{ $event['location']['name'] ?? $event['location'] }}
@if(isset($event['location']['city']))
{{ $event['location']['city'] }} @endif @else No location @endif |
@if($event['uuid'] ?? '') @endif |