Example Walkthrough
Lets see what's it like to work with adminetic admin panel
Let's get started
php artisan make:crud Quote --aclController created successfully ... β
Model created successfully ... β
Index file created successfully ... β
Create file created successfully ... β
Edit file created successfully ... β
Show file created successfully ... β
Edit add extended file created successfully ... β
Script file created successfully ... β
Migration file created named create_quotes_table ... β
Seeder file created ... β
Repository and Interface created ... β
Request file created ... β
ACL created ... β
CRUD made for model Quote ... β
So what did adminetic admin panel generated for us ?
lets hookup our quote module
lets register our routes in web.php
Lets create out database schema
Lets migrate our schema
Lets work on validating our requests in app/Htpp/Requests/QuoteRequest.php
Lets create our form in admin/layouts/module/quote/editadd_blade.php
Lets register our route to menu. In app/Services/MyMenu.php on myMenu method add folowing to array
Hurray our quote module is complete.
What are the advantages ?
Last updated