| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | 
							- <?php
 - 
 - namespace App\Policies;
 - 
 - use App\Enums\Accounting\AdjustmentStatus;
 - use App\Models\Accounting\Adjustment;
 - use App\Models\User;
 - 
 - class AdjustmentPolicy
 - {
 -     /**
 -      * 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, Adjustment $adjustment): 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, Adjustment $adjustment): bool
 -     {
 -         if ($adjustment->status === AdjustmentStatus::Archived) {
 -             return false;
 -         }
 - 
 -         return true;
 -     }
 - 
 -     /**
 -      * Determine whether the user can delete the model.
 -      */
 -     public function delete(User $user, Adjustment $adjustment): bool
 -     {
 -         return false;
 -     }
 - 
 -     /**
 -      * Determine whether the user can restore the model.
 -      */
 -     public function restore(User $user, Adjustment $adjustment): bool
 -     {
 -         return true;
 -     }
 - 
 -     /**
 -      * Determine whether the user can permanently delete the model.
 -      */
 -     public function forceDelete(User $user, Adjustment $adjustment): bool
 -     {
 -         return true;
 -     }
 - }
 
 
  |