注:用于個人學習收擦,資料未補充完整,不喜勿噴
官網(wǎng)
Laravel官網(wǎng)文檔
1霹粥、安裝
(1)布蔗、composer require nwidart/laravel-modules
(2)、php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider"
(3)、composer.json文件修改
{
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
}
(4)慈鸠、config/app.php下添加
添加服務提供者
'providers'=>[
Nwidart\Modules\LaravelModulesServiceProvider::class,
]
添加別名
'aliases'=>[
'Module'=>Nwidart\Modules\Facades\Module::class,
]
(5)、執(zhí)行:composer dump-autoload
(6)灌具、創(chuàng)建:php artisan module:make Blog
目錄結構:
2青团、使用
(1)、模塊命令
php artisan module:make Blog 創(chuàng)建一個(Blog)新模塊
php artisan module:use 使用一個模塊(這允許執(zhí)行其他命令時不用輸入模塊名)
php artisan module:unuse 和上面相反
php artisan module:list 列出所有可用模塊
php artisan module:migrate 執(zhí)行某個模塊的數(shù)據(jù)遷移(或者所有模塊的)
php artisan module:migrate-rollback Blog 執(zhí)行模塊最近一次遷移的回滾
php artisan module:migrate-refresh Blog 執(zhí)行模塊所有回滾后執(zhí)行所有遷移
php artisan module:migrate-reset Blog 執(zhí)行模塊所有回滾
php artisan module:seed Blog 執(zhí)行模塊數(shù)據(jù)填充
php artisan module:publish-migration Blog 發(fā)布遷移
php artisan module:publish-config Blog 發(fā)布配置
php artisan module:publish-translation Blog 發(fā)布語言包
php artisan module:enable Blog 開啟模塊
php artisan module:disable Blog 關閉模塊
php artisan module:update Blog 升級模塊
(2)咖楣、生成器
php artisan module:make-command CreatePostCommand Blog
php artisan module:make-migration create_posts_table Blog
php artisan module:make-seed seed_fake_blog_posts Blog
php artisan module:make-controller PostsController Blog
php artisan module:make-model Post Blog (可以使用-m同步生成遷移文件)
php artisan module:make-provider BlogServiceProvider Blog
php artisan module:make-middleware CanReadPostsMiddleware Blog
php artisan module:make-mail SendWeeklyPostsEmail Blog
php artisan module:make-notification NotifyAdminOfNewComment Blog
php artisan module:make-listener NotifyUsersOfANewPost Blog
php artisan module:make-listener NotifyUsersOfANewPost Blog --event=PostWasCreated
php artisan module:make-listener NotifyUsersOfANewPost Blog --event=PostWasCreated --queued
php artisan module:make-request CreatePostRequest Blog
php artisan module:make-event BlogPostWasUpdated Blog
php artisan module:make-job JobName Blog(可以使用-sync生成同步任務)
php artisan module:route-provider Blog 為指定的模塊生成給定的路由服務提供程序督笆。
php artisan module:make-factory FactoryName Blog
php artisan module:make-policy PolicyName Blog
php artisan module:make-rule ValidationRule Blog
php artisan module:make-resource PostResource Blog
php artisan module:make-resource PostResource Blog --collection
php artisan module:make-test EloquentPostRepositoryTest Blog
(3)、模塊方法
$path = module_path('Blog'); 獲取模塊路徑
$module = Module::find('blog');
$module->getName();
$module->getLowerName();
$module->getStudlyName();
$module->getPath(); 模塊路徑
$module->getExtraPath('Assets'); 模塊其他路勁
$module->disable();
$module->enable();
$module->delete();
$module->getRequires(); 獲取模塊依賴的其他模塊
3诱贿、可能出現(xiàn)的問題
(1)報錯:Class "Illuminate\Foundation\Console\ShowModelCommand" not found
laravel與擴展nwidart/laravel-modules版本不匹配娃肿,安裝時指定擴展版本