| 123456789101112131415161718 |
- <?php
- namespace App\Http\Controllers;
- use App\Services\FinancialDashboardService;
- use Illuminate\Http\JsonResponse;
- class FinancialDashboardController extends Controller
- {
- public function __construct(
- protected FinancialDashboardService $service,
- ) {}
- public function overview(): JsonResponse
- {
- return $this->successResponse(payload: $this->service->overview());
- }
- }
|