Have you ever tried to build a complete admin panel in Laravel from zero?
It takes lots of energy and time and, you may not like what you have bui...
For further actions, you may consider blocking this person and/or reporting abuse
Hi. thanks for the lovely admin panel. I'm new to laravel and setup your admin panel on one of my volunteer projects at buildlk.com
there was a question about how to edit the list views but found the solution. The partial blade views were a little mystery :) Thanks the admin dashboard is awesome.
When you try to update the crud config file you have to rerun
php artisan panel:crud -f
with -f flag to recreate the files.How about role and permission ?
We will implement role and permission in new versions!
127.0.0.1:8000/admin 404 not found error
ups i stayed at step 1:
$ php artisan panel:config article -m Article
The "-m" option does not exist.
Thanks!
It was edited, in the new version, you don't need to pass -m flag and you have to pass your model name directly.
How to overwrite crud?
What do you mean by "overwriting CRUD"?
How to use a select field from the configuration file?
Hey,
You have to use this syntax :
I think that you forgot to create the model and migration for articles ...
Article in this project is just an example
We are not going to create an article section
What is the route for accessing the panel?
The default route is '/admin' but you can change it in the config file
Why?
PS C:\laragon\www\easyPanel> php artisan panel:config article -m=Article
'article' must be equal to model name
php artisan panel:config Article
Use this format.
Hey,
Thanks for the admin panel. But the thing is how can I authenticate? I've installed laravel ui. Should it work?
You have to authenticate user in your project without this panel's feature!
It will check if the
is_superuser
or anything which has been set in config for logged in user is true then it lets users access to panel.