-
Hi, I am getting this error on a clean Orchid platform install:
I can see many places in the source where 'platform.index' is specified as a route, but nowhere that it is created.
That is from What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
The route should be defined at routes/platform.php. |
Beta Was this translation helpful? Give feedback.
-
Seems this is the trick: You need to remove the default route from web.php: |
Beta Was this translation helpful? Give feedback.
-
this works to me changing this |
Beta Was this translation helpful? Give feedback.
Seems this is the trick:
You need to remove the default route from web.php:
// Route::get('/', function () { // return view('welcome'); // });