mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
19 lines
450 B
PHP
19 lines
450 B
PHP
<?php
|
|
|
|
namespace Modules\Location\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class LocationServiceProvider extends ServiceProvider
|
|
{
|
|
protected string $moduleName = 'Location';
|
|
|
|
public function boot(): void
|
|
{
|
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/migrations'));
|
|
$this->loadRoutesFrom(module_path($this->moduleName, 'routes/web.php'));
|
|
}
|
|
|
|
public function register(): void {}
|
|
}
|