PlanService.php 576 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Services;
  3. use App\Models\Plan;
  4. class PlanService
  5. {
  6. public $plan;
  7. public function __construct(int $planId)
  8. {
  9. $this->plan = Plan::lockForUpdate()->find($planId);
  10. }
  11. public function incrementInventory(): bool
  12. {
  13. if ($this->plan->inventory_limit === NULL) return true;
  14. return $this->plan->increment('inventory_limit');
  15. }
  16. public function decrementInventory(): bool
  17. {
  18. if ($this->plan->inventory_limit === NULL) return true;
  19. return $this->plan->decrement('inventory_limit');
  20. }
  21. }