Dashboard report

This commit is contained in:
Kawlll Maxso
2019-03-19 18:45:39 +08:00
parent 0e117b2440
commit ac1353c5a1
14 changed files with 546 additions and 32 deletions
@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers\Dashboard;
use App\Classes\Modules\ControllersLogic\Dashboard\CbmReportLogic;
class CbmReportController
{
public function index(CbmReportLogic $logic) {
return $logic->execute();
}
}