first commit
This commit is contained in:
28
routes/web.php
Normal file
28
routes/web.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Web Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here is where you can register web routes for your application. These
|
||||
| routes are loaded by the RouteServiceProvider within a group which
|
||||
| contains the "web" middleware group. Now create something great!
|
||||
|
|
||||
*/
|
||||
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use TCG\Voyager\Facades\Voyager;
|
||||
use Wave\Facades\Wave;
|
||||
|
||||
// Authentication routes
|
||||
Auth::routes();
|
||||
|
||||
// Voyager Admin routes
|
||||
Route::group(['prefix' => 'admin'], function () {
|
||||
Voyager::routes();
|
||||
});
|
||||
|
||||
// Wave routes
|
||||
Wave::routes();
|
||||
Reference in New Issue
Block a user