| 12345678910111213141516171819 |
- <?php
- namespace App\Services;
- use App\Models\Sector;
- use Illuminate\Database\Eloquent\Collection;
- class SectorService
- {
- public function getAllItems(): Collection
- {
- return Sector::where('active', true)->orderBy('name')->get();
- }
- public function getItem(int $id): Sector
- {
- return Sector::findOrFail($id);
- }
- }
|