organizations->isOnboarded($request->user())) { return redirect()->route('care.dashboard'); } return view('care.onboarding.show', [ 'user' => $request->user(), 'timezones' => timezone_identifiers_list(), 'categories' => $this->workflows->categories(), 'templates' => $this->workflows->templates(), 'defaultTemplate' => $this->workflows->defaultTemplateKey(), ]); } public function store(Request $request): RedirectResponse { if ($this->organizations->isOnboarded($request->user())) { return redirect()->route('care.dashboard'); } $categoryKeys = array_keys($this->workflows->categories()); $templateKeys = array_keys($this->workflows->templates()); $validated = $request->validate([ 'organization_name' => ['required', 'string', 'max:255'], 'facility_category' => ['required', 'string', 'in:'.implode(',', $categoryKeys)], 'workflow_template' => ['required', 'string', 'in:'.implode(',', $templateKeys)], 'branch_name' => ['required', 'string', 'max:255'], 'branch_address' => ['nullable', 'string', 'max:500'], 'branch_phone' => ['nullable', 'string', 'max:50'], 'timezone' => ['required', 'timezone'], 'logo' => ['nullable', 'image', 'mimes:jpeg,png,jpg,webp,svg', 'max:2048'], ]); $organization = $this->organizations->completeOnboarding($request->user(), $validated); if ($request->hasFile('logo')) { $organization->update([ 'logo_path' => OrganizationBranding::storeLogo($organization, $request->file('logo')), ]); } return redirect()->route('care.dashboard')->with('success', 'Welcome to Ladill Care!'); } }