File Upload in Laravel: The Ultimate Guide
File uploads are one of the vital pieces in most web projects, and Laravel has awesome functionality for that, but information is pretty fragmented, especially for specific cases. I decided to gather it all under one big articles, discussing the most painful tasks related to file uploads. Enjoy!
“It is unsafe to run Dusk in production.” – What to do?
Laravel has an awesome tool for browser testing called Laravel Dusk. And we have its Test Generator within our QuickAdminPanel, but a few customers encountered this error, so will try to explain how to avoid it and what it actually means.
New field type “Location”: pick address from Google Maps
We’ve just launched a new field type called “location”, it will allow you to save addresses and their latitude/longitude with help of Google Maps API.
PayPal payments in Laravel: The Ultimate Guide
PayPal is one of the most popular ways to sell/buy things online, in this article we take a deep look how it works in Laravel framework.
New module: Import records from CSV into your CRUDs
We want to present to you another new module which were anticipated by our customers. Now you can not only Export records from Datatables, but also import them with a special button.
How to import CSV in Laravel and Choose Matching Fields
There are quite a lot of articles about how to import data from CSV file to Laravel database. But none of them touches the case of matching the fields from header to actual database columns, and sometimes we’re not sure what columns are passed in user’s CSV. So this tutorial will provide a broader picture on CSV import, with example project available on Github. Let’s go!
Example project: Event Invitation system in Laravel 5.5
Another project built on QuickAdminPanel is put up on GitHub.
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.