mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
19 lines
323 B
PHP
19 lines
323 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: ayen
|
|
* Date: 18/03/2019
|
|
* Time: 10:13 AM
|
|
*/
|
|
|
|
namespace App\Http\Controllers\Dashboard;
|
|
|
|
|
|
use App\Classes\Modules\ControllersLogic\Dashboard\CbmReportLogic;
|
|
|
|
class CbmReportController
|
|
{
|
|
public function index(CbmReportLogic $logic) {
|
|
return $logic->execute();
|
|
}
|
|
} |