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,18 @@
<?php
/**
* Created by PhpStorm.
* User: ayen
* Date: 19/03/2019
* Time: 10:17 AM
*/
namespace App\Http\Controllers\Dashboard;
use App\Classes\Modules\ControllersLogic\Dashboard\CustomerReportLogic;
class CustomerReportController
{
public function index(CustomerReportLogic $logic) {
return $logic->execute();
}
}