mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
19 lines
371 B
PHP
19 lines
371 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AdminServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
$this->loadMigrationsFrom(module_path('Admin', 'Database/migrations'));
|
|
}
|
|
|
|
public function register(): void
|
|
{
|
|
$this->app->register(AdminPanelProvider::class);
|
|
}
|
|
}
|