Sad News: We’re Sunsetting QuickAdminPanel
Unfortunately, after nine years of operation, it’s time to (slowly) say goodbye to our beloved product. In this article, I will say two things: Reasons for this decision What happens for the customers: right away and in the future In short, nothing will change immediately,…
QuickAdminPanel API Generator with Laravel Sanctum
As a part of our generated code, we also generate API Controllers and Routes. By popular demand, in late 2020, we switched their protection from Laravel Passport to more popular Laravel Sanctum. This article will show how to use Sanctum-protected API from your front-end.
Laravel BelongsToMany: Add Extra Fields to Pivot Table
Our QuickAdminPanel has belongsToMany relationship field, but we don’t have the ability to add extra columns to pivot tables. No worries, this article will show you how to make this change manually.
How to Add Stripe One-Time Payment Form to Laravel Project
Payments are one of the most typical elements of any web-project, and Stripe is a payment provider that is really easy to install in Laravel projects. In this article, we will add a payment form to the page.
NEW Feature: Column Search in CRUDs – with One Checkbox
We’ve released a new feature – when creating/editing a CRUD, you can specify to enable a “Column search”. Then, in your datatable, you will have a field to search not only in all the table, but also in each field separately.
Upgraded From v2: We Generate CoreUI v3 Panels Now
We updated our generator to support a newer version of a popular CoreUI theme. They recently released v3, and our generator was still using older v2.1. Not anymore.
Customize CSV Import Module for Relationships and Passwords
Inside of QuickAdminPanel, we have a module called CSV Import. A few customers asked how to customize it, like how to handle many-to-many relationships to be imported, or modify some fields before the actual import. Let’s take a look.
How to Add a Front Homepage to Admin Panel
By default, our generated code contains only the admin panel – no front page, and the main URL automatically redirects to /login. But it’s easy to start building your front-end part, this article will show you how.
Laravel API: How to Upload File from Vue.js
Dealing with file uploads in Vue + API is a tricky question, and not a lot of examples out there, so we decided to provide our own version, with two demo-projects.
5 Ways to Use Raw Database Queries in Laravel
Laravel has a great database mechanism called Eloquent, also a powerful Query Builder, but sometimes it makes sense to just use plain SQL, in the form of Raw Queries. In this article, I will show you the most common examples of this approach.