PHP code example of faisalrizal / modules

1. Go to this page and download the library: Download faisalrizal/modules library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

faisalrizal / modules example snippets


'providers' => [
  Tokolabs\Modules\ModulesServiceProvider::class,
],

'aliases' => [
  'Module' => Tokolabs\Modules\Facades\Module::class,
],

php artisan vendor:publish

$app->register(Tokolabs\Modules\ModulesServiceProvider::class);


$app->withFacades(true, [Tokolabs\Modules\Facades\Module::class => 'Module']);

$app->register(App\Modules\[ModuleName]\Providers\ModuleServiceProvider::class);