I'm using backpack 3.3 on a laravel 5.5 installation. I want to prefill two create form fields with two URL passed values. Say you create a basic backpack crud, named Image. Normally you can go to domain/admin/image/create to view and fill in the form.
But if I add one or two params in the url, I get a 404. I guess I should manage the routes file (admin.php) I tried this way:
Route::group(['prefix' => 'image/{k}/{cid}'], function()
{
CRUD::resource('image', 'ImageCrudController');
});
but still get a 404. Any suggestions? Thanks in advance.