|
9 | 9 | use App\Http\Controllers\FormComponentsController;
|
10 | 10 | use App\Http\Controllers\FormRelationsController;
|
11 | 11 | use App\Http\Controllers\FormViewController;
|
| 12 | +use App\Http\Controllers\LazyController; |
12 | 13 | use App\Http\Controllers\ModalController;
|
13 | 14 | use App\Http\Controllers\NavigationController;
|
14 | 15 | use App\Http\Controllers\NestedFormController;
|
|
115 | 116 |
|
116 | 117 | Route::get('form/relations/twoForms', [FormRelationsController::class, 'twoForms'])->name('form.relations.twoForms');
|
117 | 118 |
|
| 119 | + Route::get('lazy', [LazyController::class, 'show'])->name('lazy'); |
| 120 | + Route::get('lazy/notifications', [LazyController::class, 'notifications'])->name('lazy.notifications'); |
| 121 | + |
118 | 122 | Route::get('navigation/one/{id?}', [NavigationController::class, 'one'])->name('navigation.one');
|
119 | 123 | Route::get('navigation/two', [NavigationController::class, 'two'])->name('navigation.two');
|
120 | 124 | Route::get('navigation/three', [NavigationController::class, 'three'])->name('navigation.three');
|
121 | 125 | Route::get('navigation/form', [NavigationController::class, 'form'])->name('navigation.form');
|
| 126 | + Route::get('navigation/video/one', [NavigationController::class, 'videoOne'])->name('navigation.videoOne'); |
| 127 | + Route::get('navigation/video/two', [NavigationController::class, 'videoTwo'])->name('navigation.videoTwo'); |
122 | 128 |
|
123 | 129 | Route::get('navigation/notFound', fn () => abort(404))->name('navigation.notFound');
|
124 | 130 | Route::get('navigation/serverError', fn () => throw new Exception('Whoops!'))->name('navigation.serverError');
|
|
143 | 149 | return view('state');
|
144 | 150 | })->name('state');
|
145 | 151 |
|
| 152 | + Route::view('teleport', 'teleport')->name('teleport'); |
| 153 | + |
146 | 154 | Route::get('toast/infoLeftTop', [ToastController::class, 'infoLeftTop'])->name('toast.infoLeftTop');
|
147 | 155 | Route::get('toast/infoCenterTop', [ToastController::class, 'infoCenterTop'])->name('toast.infoCenterTop');
|
148 | 156 | Route::get('toast/infoRightTop', [ToastController::class, 'infoRightTop'])->name('toast.infoRightTop');
|
|
158 | 166 | Route::view('toggle/single', 'toggle.single')->name('toggle.single');
|
159 | 167 | Route::view('toggle/multiple', 'toggle.multiple')->name('toggle.multiple');
|
160 | 168 |
|
| 169 | + Route::view('transition/default', 'transition.default')->name('transition.default'); |
| 170 | + |
161 | 171 | Route::prefix('table')->group(function () {
|
162 | 172 | $table = new UserTableView;
|
163 | 173 |
|
|
0 commit comments