12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
-
- namespace App\Policies;
-
- use App\Models\Setting\Currency;
- use App\Models\User;
-
- class CurrencyPolicy
- {
- /**
- * Determine whether the user can view any models.
- */
- public function viewAny(User $user): bool
- {
- return true;
- }
-
- /**
- * Determine whether the user can view the model.
- */
- public function view(User $user, Currency $currency): bool
- {
- return $user->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;
- }
- }
|