From 7aa194df54ac9837519f091a0716fe7a7d2dd4c6 Mon Sep 17 00:00:00 2001 From: Reza Amini Date: Sun, 28 Nov 2021 16:10:28 +0330 Subject: [PATCH] Add crud create route --- src/routes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes.php b/src/routes.php index 8649f5b..af9d220 100644 --- a/src/routes.php +++ b/src/routes.php @@ -42,4 +42,5 @@ Route::prefix('crud')->name('crud.')->group(function (){ Route::get('/', \EasyPanel\Http\Livewire\CRUD\Lists::class)->name('lists'); + Route::get('/create', \EasyPanel\Http\Livewire\CRUD\Create::class)->name('create'); });