Iman Sugirman

Results 7 comments of Iman Sugirman

```classNames``` not ```className``` please check `s`

i have same issue, and solve with : ``` return Inertia::render('Users' ``` change with : ``` return Inertia::render('Users/Index' ``` change name and folder like that.

Maybe you try like this `$post = new Post; $post->post_title = strip_tags($title); $post->post_content = $content; $post->post_status = $post_status; $post->save(); // Place attach taxonomies after save $post->taxonomies()->sync( array_merge($catsIds, $tagsIds) );`

please see https://hono.dev/api/request ```js // Captured params app.get('/entry/:id', (c) => { const id = c.req.param('id') ... }) // Get all params at once app.get('/entry/:id/comment/:commentId', (c) => { const { id,...