28 lines
576 B
PHP
28 lines
576 B
PHP
<?php
|
||
|
||
namespace App\Providers;
|
||
|
||
use Illuminate\Support\ServiceProvider;
|
||
|
||
class AppServiceProvider extends ServiceProvider
|
||
{
|
||
/**
|
||
* Register any application services.
|
||
*/
|
||
public function register(): void
|
||
{
|
||
//
|
||
}
|
||
|
||
/**
|
||
* Bootstrap any application services.
|
||
*/
|
||
public function boot(): void
|
||
{
|
||
// 自动加载所有插件的迁移(插件目录下 database/migrations)
|
||
foreach (glob(base_path('plugins/*/database/migrations')) ?: [] as $path) {
|
||
$this->loadMigrationsFrom($path);
|
||
}
|
||
}
|
||
}
|