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