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