form->opening_hours = collect(Day::cases()) ->mapWithKeys(fn (Day $day) => [ $day->value => ['open_time' => null, 'close_time' => null], ]) ->toArray(); $this->days = Day::cases(); } public function save() { $this->canOrAbort('create outlet'); $this->form->store(); $this->dispatch('refreshDatatable'); $this->toast('Outlet berhasil ditambahkan.'); $this->redirectRoute('studio.master.outlet.index', navigate: true); } public function render() { return view('livewire.studio.master.outlet.form', [ 'pageTitle' => 'Tambah Outlet', ]); } }