19 lines
449 B
PHP
19 lines
449 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Helpers\SidebarStatsHelper;
|
|
use App\Helpers\DashboardDataHelper;
|
|
|
|
class TestSidebarController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$sidebarStats = SidebarStatsHelper::getStats();
|
|
$dashboardData = DashboardDataHelper::getDashboardData();
|
|
|
|
return view('test-sidebar-data', compact('sidebarStats', 'dashboardData'));
|
|
}
|
|
}
|