For my project I'm using a Laravel backend with Backpack installed. Currently Backpack has generated a CRUD controller for my Role model but I want to add a field. Since this CRUD controller isn't in my project I can't edit this controller. So I wanted to create a new CRUD controller for my Role model. So I ran the following command:
php artisan backpack:crud role
When it asked for a type I gave field as value. When I run this I get an exception as can be seen in the added image.
I tried using different types (request, etc.) but I got the same exception. I also tried updating Backpack, but this didn't help.
