Skip to content

Commit

Permalink
Rename page builder route
Browse files Browse the repository at this point in the history
  • Loading branch information
allamo123 committed Jan 2, 2023
1 parent 352dd4a commit 179f27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
// $prefix = 'hello';
use MSA\LaravelGrapes\Http\Controllers\PageController;
Route::get('/front-end-builder', [PageController::class, 'index']);
Route::get('/front-end-builder', [PageController::class, 'index'])->name('website.builder');
Route::post('/front-end-builder/create-page', [PageController::class, 'store'])->name('new_page.store');
Route::put('/front-end-builder/update-page-content/{id}', [PageController::class, 'updateContent'])->name('update.page_content');
Route::put('/front-end-builder/update-page/{id}', [PageController::class, 'update'])->name('update.page');
Expand Down

0 comments on commit 179f27c

Please sign in to comment.