| ... | ... |
@@ -14,3 +14,11 @@ |
| 14 | 14 |
Route::get('/', function () {
|
| 15 | 15 |
return view('welcome');
|
| 16 | 16 |
}); |
| 17 |
+ |
|
| 18 |
+Route::prefix('builder')->group(function () {
|
|
| 19 |
+ |
|
| 20 |
+ Route::get('dashboard', 'BuilderDashboardController@index');
|
|
| 21 |
+ |
|
| 22 |
+ Route::get('editor', 'BuilderEditorController@index');
|
|
| 23 |
+ |
|
| 24 |
+}); |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,16 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+/* |
|
| 4 |
+|-------------------------------------------------------------------------- |
|
| 5 |
+| Web Routes |
|
| 6 |
+|-------------------------------------------------------------------------- |
|
| 7 |
+| |
|
| 8 |
+| Here is where you can register web routes for your application. These |
|
| 9 |
+| routes are loaded by the RouteServiceProvider within a group which |
|
| 10 |
+| contains the "web" middleware group. Now create something great! |
|
| 11 |
+| |
|
| 12 |
+*/ |
|
| 13 |
+ |
|
| 14 |
+Route::get('/', function () {
|
|
| 15 |
+ return view('welcome');
|
|
| 16 |
+}); |