1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
- namespace App\Policies;
-
- use App\Models\Common\Vendor;
- use App\Models\User;
-
- class VendorPolicy
- {
- /**
- * 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, Vendor $client): 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, Vendor $client): bool
- {
- return true;
- }
-
- /**
- * Determine whether the user can delete the model.
- */
- public function delete(User $user, Vendor $client): bool
- {
- return false;
- }
-
- /**
- * Determine whether the user can restore the model.
- */
- public function restore(User $user, Vendor $client): bool
- {
- return false;
- }
-
- /**
- * Determine whether the user can permanently delete the model.
- */
- public function forceDelete(User $user, Vendor $client): bool
- {
- return false;
- }
- }
|