mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
18 lines
454 B
PHP
18 lines
454 B
PHP
<?php
|
|
|
|
namespace Modules\User\App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class UserServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
$this->loadMigrationsFrom(module_path('User', 'Database/migrations'));
|
|
$this->loadRoutesFrom(module_path('User', 'routes/web.php'));
|
|
$this->loadViewsFrom(module_path('User', 'resources/views'), 'user');
|
|
}
|
|
|
|
public function register(): void {}
|
|
}
|