hasRole('admin')) return true; return $user->commune_id === $licence->commune_id; } /** * Determine whether the user can create models. */ public function create(User $user): bool { return true; // Simple users can create } /** * Determine whether the user can update the model. */ public function update(User $user, Licence $licence): bool { if ($user->hasRole('admin')) return true; return $user->commune_id === $licence->commune_id; } /** * Determine whether the user can delete the model. */ public function delete(User $user, Licence $licence): bool { if ($user->hasRole('admin')) return true; return $user->commune_id === $licence->commune_id; } }