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