mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
18 lines
337 B
PHP
18 lines
337 B
PHP
<?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();
|
|
}
|
|
} |