16 lines
385 B
PHP
16 lines
385 B
PHP
<?php
|
|
|
|
namespace App\Features\Dashboard\Controllers;
|
|
|
|
use App\Features\Dashboard\Data\DashboardData;
|
|
use App\Features\Dashboard\Services\DashboardService;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class DashboardController extends Controller
|
|
{
|
|
public function index(DashboardService $dashboardService): DashboardData
|
|
{
|
|
return $dashboardService->getDashboardData();
|
|
}
|
|
}
|