belongsToCompany($currency->company); } /** * Determine whether the user can create models. */ public function create(User $user): bool { return true; } /** * Determine whether the user can update the model. */ public function update(User $user, Currency $currency): bool { $defaultCurrency = Currency::getDefaultCurrency(); return $user->belongsToCompany($currency->company) && $currency->code !== $defaultCurrency; } /** * Determine whether the user can delete the model. */ public function delete(User $user, Currency $currency): bool { return $user->belongsToCompany($currency->company); } /** * Determine whether the user can restore the model. */ public function restore(User $user): bool { return true; } /** * Determine whether the user can permanently delete the model. */ public function forceDelete(User $user): bool { return true; } }