Config CRUD
See original GitHub issuehi,
I already have everything ready but when I try to enter the CRUD tells me that page not found
look:
_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:
- Created 7 years ago
- Comments:9 (4 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Are you using Laravel 5.3? If so, the route file has changed - it is now no longer
app/Http/routes.php
, butroutes/web.php
and/orroutes/api.php
.Was this the issue, I wonder?
thanks friend, you’re great