FinancialDashboardController.php 407 B

123456789101112131415161718
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Services\FinancialDashboardService;
  4. use Illuminate\Http\JsonResponse;
  5. class FinancialDashboardController extends Controller
  6. {
  7. public function __construct(
  8. protected FinancialDashboardService $service,
  9. ) {}
  10. public function overview(): JsonResponse
  11. {
  12. return $this->successResponse(payload: $this->service->overview());
  13. }
  14. }