mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
12 lines
253 B
PHP
12 lines
253 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Dashboard;
|
|
|
|
use App\Classes\Modules\ControllersLogic\Dashboard\CustomerReportLogic;
|
|
|
|
class CustomerReportController
|
|
{
|
|
public function index(CustomerReportLogic $logic) {
|
|
return $logic->execute();
|
|
}
|
|
} |