authorizeAbility($request, 'admin.branches.view'); $organization = $this->organization($request); $branches = Branch::owned($this->ownerRef($request)) ->where('organization_id', $organization->id) ->withCount(['buildings']) ->orderBy('name') ->get(); return view('frontdesk.admin.branches.index', compact('branches', 'organization')); } public function create(Request $request): View { $this->authorizeAbility($request, 'admin.branches.manage'); return view('frontdesk.admin.branches.create', ['organization' => $this->organization($request)]); } public function store(Request $request): RedirectResponse { $this->authorizeAbility($request, 'admin.branches.manage'); $organization = $this->organization($request); $currentCount = Branch::owned($this->ownerRef($request)) ->where('organization_id', $organization->id) ->count(); if (! app(\App\Services\Frontdesk\PlanService::class)->canAddBranch($organization, $currentCount)) { return back()->withInput()->with('error', 'Your plan allows one branch. Upgrade to Frontdesk Pro for unlimited branches.'); } $validated = $request->validate([ 'name' => ['required', 'string', 'max:255'], 'code' => ['nullable', 'string', 'max:50'], 'address' => ['nullable', 'string', 'max:500'], 'phone' => ['nullable', 'string', 'max:50'], ]); Branch::create([ 'owner_ref' => $this->ownerRef($request), 'organization_id' => $organization->id, ...$validated, 'is_active' => true, ]); return redirect()->route('frontdesk.branches.index')->with('success', 'Branch created.'); } public function edit(Request $request, Branch $branch): View { $this->authorizeAbility($request, 'admin.branches.manage'); $this->authorizeOwner($request, $branch); return view('frontdesk.admin.branches.edit', compact('branch')); } public function update(Request $request, Branch $branch): RedirectResponse { $this->authorizeAbility($request, 'admin.branches.manage'); $this->authorizeOwner($request, $branch); $validated = $request->validate([ 'name' => ['required', 'string', 'max:255'], 'code' => ['nullable', 'string', 'max:50'], 'address' => ['nullable', 'string', 'max:500'], 'phone' => ['nullable', 'string', 'max:50'], 'is_active' => ['boolean'], ]); $branch->update([ ...$validated, 'is_active' => $request->boolean('is_active'), ]); return redirect()->route('frontdesk.branches.index')->with('success', 'Branch updated.'); } }