Dashboard report

This commit is contained in:
Kawlll Maxso
2019-03-19 17:11:19 +08:00
parent 07bbe0034c
commit 863bf0a82f
483 changed files with 587 additions and 28 deletions
@@ -0,0 +1,19 @@
<?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\ActiveCustomerReportLogic;
class ActiveCustomerReportController
{
public function index(ActiveCustomerReportLogic $logic) {
return $logic->execute();
}
}