peter-tharwat / dashboard

Simple Arabic Laravel Dashboard , has basic settings and a nice layout . to make it easy for you to create fast dashboard
333 stars 149 forks source link

share data from all modules to use any file in project #15

Closed Hazem7575 closed 2 years ago

Hazem7575 commented 2 years ago

share data modules @Mohamed Yasser

Hazem7575 commented 2 years ago

to use share create File in folder Controller in modules name DataShareController.php create any function in controller to use function use any file in project Example $data = (new ModulesUnit())->ShareDataModules('Test'); this code will get All data from All function Test in file DataShareController.php in Modules Install Enabled Dont Get Data from Modules Inactive

You can add some arguments if the function contains peremeters

function Test($name);

$data = (new ModulesUnit())->ShareDataModules('Test' , ['name' => 'Mohamed']);