12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
-
- namespace App\Policies;
-
- use App\Models\Banking\BankAccount;
- use App\Models\User;
- use Illuminate\Auth\Access\HandlesAuthorization;
-
- class BankAccountPolicy
- {
- use HandlesAuthorization;
-
- /**
- * 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, BankAccount $bankAccount): bool
- {
- return true;
- }
-
- /**
- * 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, BankAccount $bankAccount): bool
- {
- return true;
- }
-
- /**
- * Determine whether the user can delete the model.
- */
- public function delete(User $user, BankAccount $bankAccount): bool
- {
- return $bankAccount->isDisabled();
- }
-
- public function deleteAny(User $user): bool
- {
- return true;
- }
-
- /**
- * Determine whether the user can restore the model.
- */
- public function restore(User $user, BankAccount $bankAccount): bool
- {
- return false;
- }
-
- /**
- * Determine whether the user can permanently delete the model.
- */
- public function forceDelete(User $user, BankAccount $bankAccount): bool
- {
- return false;
- }
- }
|