Files
ladill-frontdesk/app/Http/Controllers/Frontdesk/BranchController.php
T
isaacclad 59433f2b7b
Deploy Ladill Frontdesk / deploy (push) Successful in 55s
Harden per-branch billing with seat caps and mid-cycle expansion.
Enforce billed_branches when adding or reactivating branches, charge
wallet for extra seats mid-cycle, fix Settings for Enterprise, and
cover multi-branch checkout and renewal amounts in tests.
2026-07-16 08:08:10 +00:00

111 lines
3.8 KiB
PHP

<?php
namespace App\Http\Controllers\Frontdesk;
use App\Http\Controllers\Controller;
use App\Http\Controllers\Frontdesk\Concerns\ScopesToAccount;
use App\Models\Branch;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\View\View;
class BranchController extends Controller
{
use ScopesToAccount;
public function index(Request $request): View
{
$this->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();
$heroStats = [
'total' => $branches->count(),
'active' => $branches->where('is_active', true)->count(),
'buildings' => $branches->sum('buildings_count'),
];
return view('frontdesk.admin.branches.index', compact('branches', 'organization', 'heroStats'));
}
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);
$plans = app(\App\Services\Frontdesk\PlanService::class);
$currentCount = Branch::owned($this->ownerRef($request))
->where('organization_id', $organization->id)
->count();
if (! $plans->canAddBranch($organization, $currentCount)) {
return back()->withInput()->with('error', $plans->branchLimitMessage($organization));
}
$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'],
]);
$activating = $request->boolean('is_active') && ! $branch->is_active;
if ($activating) {
$plans = app(\App\Services\Frontdesk\PlanService::class);
$organization = $this->organization($request);
if (! $plans->canActivateBranch($organization)) {
return back()->withInput()->with('error', $plans->branchLimitMessage($organization));
}
}
$branch->update([
...$validated,
'is_active' => $request->boolean('is_active'),
]);
return redirect()->route('frontdesk.branches.index')->with('success', 'Branch updated.');
}
}