/var/www/vhosts/ihelp.ro/httpdocs/src/Controller/Admin
Edit: /var/www/vhosts/ihelp.ro/httpdocs/src/Controller/Admin/DashboardController.php (1062B)
loadModel('Orders');
$this->loadModel('Users');
$dashboard = null;
$currentDate = Date::now()->format('Y-m-d');
$newOrders = $this->Orders->find()
->where([
'Orders.created >' => $currentDate . ' 00:00:00',
'Orders.created <' => $currentDate . ' 23:59:59',
])
->all();
$users = $this->Users->find()->all();
$newUsers = $this->Users->find()
->where([
'Users.created >' => $currentDate . ' 00:00:00',
'Users.created <' => $currentDate . ' 23:59:59',
])
->all();
$this->set(compact('dashboard', 'newOrders', 'users', 'newUsers'));
}
}