Files
Zonneplan/app/Features/Dashboard/Controllers/DashboardController.php
T

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();
}
}