TypeVehicleService.php 291B

1234567891011121314
  1. <?php
  2. namespace App\Services;
  3. use App\Models\TypeVehicle;
  4. class TypeVehicleService
  5. {
  6. public function isUsed(TypeVehicle $typeVehicle)
  7. {
  8. return $typeVehicle->vehicles()->exists() || $typeVehicle->maxVehicles()->exists() || $typeVehicle->outTransaction()->exists();
  9. }
  10. }