PHP code example of dnafactory / laravel-modular

1. Go to this page and download the library: Download dnafactory/laravel-modular 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/ */

    

dnafactory / laravel-modular example snippets


config('module1.one');

config('module1.foldername.four');

 return [
    'bind' => [
        Interface1::class => Concrete1::class,
        Interface2::class => Concrete2::class,
    ],
    'singleton' => [
        Interface3::class => Concrete3::class,
        Interface4::class => Concrete4::class,
    ],
];

 return [
    Provider1::class,
    Provider2::class
];

 return [
    Command1::class,
    Command2::class
];

 Route::get('/hello-world', function (){ echo 'Hello World'; });

return view('module1.first');

 function sum($a, $b) { return $a + $b; }

protected function registerCron(Schedule $schedule) {
    $schedule->command('command:name')->everyMinute();
}

public function getModuleName() { return 'ModuleName'; } 

public function getBasePath(){ return __DIR__ . DIRECTORY_SEPARATOR . '..'; }
 
public function getBasePath(){ 
    return __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'src'; 
}