first commit
This commit is contained in:
49
app/Merchant/MerchantServiceProvider.php
Normal file
49
app/Merchant/MerchantServiceProvider.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace App\Merchant;
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class MerchantServiceProvider extends ServiceProvider
|
||||
{
|
||||
protected $routeMiddleware = [
|
||||
'merchant.auth' => Middleware\Authenticate::class,
|
||||
'merchant.guest' => Middleware\Guest::class,
|
||||
];
|
||||
|
||||
protected $middlewareGroups = [
|
||||
'merchant' => [
|
||||
'merchant.auth',
|
||||
],
|
||||
];
|
||||
|
||||
public function boot()
|
||||
{
|
||||
$this->publishes([__DIR__ . '/Resources/assets' => public_path('assets/merchant')]);
|
||||
|
||||
$this->loadViewsFrom(__DIR__ . '/Resources/views', 'Merchant');
|
||||
}
|
||||
|
||||
public function register()
|
||||
{
|
||||
$this->registerRouteMiddleware();
|
||||
$this->loadAdminRoutes();
|
||||
}
|
||||
|
||||
protected function registerRouteMiddleware()
|
||||
{
|
||||
foreach ($this->routeMiddleware as $key => $middleware) {
|
||||
Route::aliasMiddleware($key, $middleware);
|
||||
}
|
||||
}
|
||||
|
||||
protected function loadAdminRoutes()
|
||||
{
|
||||
Route::middleware('web')
|
||||
->prefix('merchant')
|
||||
->name('merchant.')
|
||||
->namespace('App\Merchant\Controllers')
|
||||
->group(__DIR__ . '/routes.php');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user