@extends('layouts.admin.layout') @section('content') @php //$schedule = old('schedule', $event->repeats == 1 ? '1' : '0'); $schedule = (string) old('schedule', $event->repeats == 1 ? '1' : '0'); $selectType = old('select_type', $event->select_type ?? 'public'); $oldDow = array_map('intval', old('days_of_week', $event->days_of_week ?? [])); $dowNames = [0=>'Sun',1=>'Mon',2=>'Tue',3=>'Wed',4=>'Thu',5=>'Fri',6=>'Sat']; $coverPath = old('cover_image_path', $event->image ?? ''); $coverPreviewUrl = ''; if ($coverPath) { $coverPreviewUrl = str_starts_with($coverPath, 'http') ? $coverPath : \Storage::disk('public')->url($coverPath); } @endphp
@endsection @push('scripts') @endpush