| 1234567891011121314151617 |
- <?php
- namespace App\Http\Controllers;
- use App\Services\DashboardService;
- use Illuminate\Http\JsonResponse;
- class DashboardController extends Controller
- {
- public function __construct(protected DashboardService $service) {}
- public function stats(): JsonResponse
- {
- $stats = $this->service->getStats();
- return $this->successResponse(payload: $stats);
- }
- }
|