| 12345678910111213141516171819 |
- <?php
- namespace App\Http\Controllers;
- use App\Services\FranchisorDashboardService;
- use Illuminate\Http\JsonResponse;
- class FranchisorDashboardController extends Controller
- {
- public function __construct(
- protected FranchisorDashboardService $service,
- ) {}
- public function overview(): JsonResponse
- {
- $unitIds = array_filter((array) request()->input('unit_ids', []));
- return $this->successResponse(payload: $this->service->overview($unitIds));
- }
- }
|