Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfletcher committed Sep 17, 2020
1 parent 558d9e8 commit 0a21df4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/LaravelUikitServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ public function boot(): void
Fortify::verifyEmailView(fn() => view('laravel-uikit::auth.verify-email'));
}

$this->loadRoutesFrom(__DIR__ . '/../../routes/web.php');
$this->loadRoutesFrom(__DIR__ . '/../routes/web.php');

$this->loadViewsFrom(__DIR__ . '/../../resources/views', 'laravel-uikit');
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'laravel-uikit');

$this->publishes(
[
__DIR__ . '/../../webpack.mix.js' => 'webpack.mix.js',
__DIR__ . '/../../resources/js' => resource_path('js'),
__DIR__ . '/../../resources/sass' => resource_path('sass'),
__DIR__ . '/../../resources/views/welcome.blade.php' => resource_path('views/welcome.blade.php'),
__DIR__ . '/../../resources/views/layouts' => resource_path('views/layouts'),
__DIR__ . '/../webpack.mix.js' => 'webpack.mix.js',
__DIR__ . '/../resources/js' => resource_path('js'),
__DIR__ . '/../resources/sass' => resource_path('sass'),
__DIR__ . '/../resources/views/welcome.blade.php' => resource_path('views/welcome.blade.php'),
__DIR__ . '/../resources/views/layouts' => resource_path('views/layouts'),
]
);
}
Expand Down

0 comments on commit 0a21df4

Please sign in to comment.