Posts

Showing posts with the label backpack-for-laravel

laravel backup raising 404 to return a view

Image
Clash Royale CLAN TAG #URR8PPP laravel backup raising 404 to return a view In short what is happening is, when I try to access a route, Laravel shows a 404 error, with a short description " Page not Found, No query results for model [AppModelsProduct] teste ". Inside of my model I have the method "teste" which invokes a route. public function teste($crud = false) { return '<a class="btn btn-xs btn-default" href="product/teste" data-toggle="tooltip" title="Just a demo custom button."><i class="fa fa-search"></i> Add Item</a>'; } button image in the datatable line Adding a button inside of ProductCrudController $this->crud->addButton('top', 'bteste', 'model_function', 'teste', 'beginning'); Inside of custom.php I have tried already: CRUD::resource('product/teste', 'ProductCrudController@teste'); Route::get...