question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

hi,

I already have everything ready but when I try to enter the CRUD tells me that page not found look: crud

_file routes.php_*

<?php // Admin Interface Routes Route::group(['prefix' => 'admin', 'middleware' => 'admin'], function() { Route::get('dashboard', 'Admin\AdminController@index'); ``` // [...] other routes // Dick CRUD: Define the resources for the entities you want to CRUD. CRUD::resource('tag', 'Admin\TagCrudController'); ``` });

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:9 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
tabacitucommented, Sep 8, 2016

Are you using Laravel 5.3? If so, the route file has changed - it is now no longer app/Http/routes.php, but routes/web.php and/or routes/api.php.

Was this the issue, I wonder?

0reactions
guillermohaadcommented, Sep 9, 2016

thanks friend, you’re great

Read more comments on GitHub >

github_iconTop Results From Across the Web

Configuration — Crud v5 - Read the Docs
Configuration of Crud is done through the Crud component - either on the fly anywhere in you application, or by providing the configuration...
Read more >
Configuration | Vue CRUD
Create crud.js file in src/config directory. You may use template located in examples/ example /config/crud.js. Here you can set default CRUD configuration ...
Read more >
CRUD Controllers (EasyAdminBundle Documentation)
CRUD Controller Configuration. The only mandatory config option of a CRUD controller is the FQCN of the Doctrine entity being managed by the...
Read more >
PHP MySQL CRUD Application - Tutorial Republic
In this tutorial you will learn how to build a CRUD application to create, read, update and delete records in a MySQL database...
Read more >
What is a CRUD app and how to build one | Ultimate guide
A CRUD app is a specific type of software application that consists of four basic operations; Create, Read, Update, Delete. At a high...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found