Why you need AJAX (Server-Side) Datatables?
Our admin panel generator is using Datatables.net to present the tables. It’s perfect for small tables, but for bigger amounts of data it becomes slower. That’s why you need to go server-side.
Changing QuickAdminPanel theme: from AdminLTE to Gentelella
One of the most common questions from our clients is how to change a default downloaded admin panel theme. We use a mega-popular AdminLTE, but you may want to have your own style, and it’s fine. We will show you an example – how to…
Stripe Payments in Laravel: The Ultimate Guide
Stripe is one of the most popular payment merchants for web, but information about Laravel integration is pretty fragmented, so I decided to write a really long tutorial about this topic.
List of 21 Artisan Make Commands with Parameters [Updated 2019]
Laravel has awesome set of artisan commands, probably the most often used are make:xxx – like make:model or make:migration etc. But do you know all 16 of them? And, moreover, do you know their parameters which may help to make the code even quicker?
System Calendar: add one or more CRUD sources to the calendar
Another new module in our QuickAdminPanel. Calendar is one of the most popular functions in web-projects, so we decided to build a function to gather your CRUDs data into one calendar.
Soft-Deletes: now with Restore and Permanent Delete
When creating CRUD in QuickAdminPanel, you can tick the checkbox “Soft-deletes”, and it would automatically add th functionality of deleted_at to your model. But now we’re expanding this feature beyond just hiding soft-deleted entries. Now you will be able to view them and restore/delete.
Request a Laravel version upgrade for your panel
One of the requested features for our new Agency plan was ability to upgrade Laravel version for the admin panel and re-generate the code. So we’ve done exactly that.
Showcase your panel to clients: give them “special” access
After working on your admin panel for a while, you probably want to show progress to the client. For that, you download the project, put it somewhere on your server and give the link to the client? You don’t have to do that anymore – we will provide a special collaborator access.
“Combined” migrations – even after many CRUD changes
One of the new features we are presenting for Agency plan customers this week is ability to have database migrations “clean”. Up until now, we were creating a new migration file for every change in CRUD – like field added/deleted/updated. Now you have another option.
New Flexible Roles-Permissions system – stored in the database
Current QuickAdminPanel user-roles system is pretty basic – two roles, and then permissions are stored in AuthServiceProvider.php after download, so users can change it there. But now we’re introducing something much more flexible.