validate([ 'title' => 'nullable|string|max:255', 'subtitle' => 'nullable|string|max:255', 'description' => 'nullable|string', 'time' => 'nullable|string|max:255', 'open_close' => 'nullable|string|max:255', 'days' => 'nullable|string|max:255', 'timings' => 'nullable|string|max:255', 'location' => 'nullable|string|max:255', 'address' => 'nullable|string', ]); $data = ScheduleLocationPage::first() ?? new ScheduleLocationPage; $data->fill($request->all()); $data->save(); return redirect()->back()->with('success', 'Schedule Location Page saved successfully!'); } }