Laravel SaaS: 9 Useful Packages and Tools
The start of a SaaS application can be challenging, but some Laravel tools/packages help you with that. In this article, I will show you 9 of them.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
The start of a SaaS application can be challenging, but some Laravel tools/packages help you with that. In this article, I will show you 9 of them.
Laravel is huge in popularity, but are there any real BIG companies using it? Or any really LARGE projects? In this article, we will take look at 10 large open-source projects on GitHub, created with Laravel.
I recently worked with an Eloquent query with the `where status = 'new'` filter by ENUM value, which felt quite slow. I changed it to `status_id` instead. Was it faster? Let's find out together.
We've been working a lot with Filament since 2023. After publishing many tutorials on this website, we decided to dedicate a separate portal just for Filament users, to avoid mixing it with Laravel.
Generating random strings is very common for tokens, random passwords, etc. Let's see what Laravel helpers and native PHP functions we can use for this.
Filament Relation Manager is a great feature for showing data from an Eloquent relationship. But what if you want to show the relation manager only on the View page but not Edit?
In Filament tables, some values could be null, but you may want to still show some placeholder instead? A typical formatStateUsing() method wouldn't work. Let me show two alternatives.
Laravel is famous for Eloquent ORM which typically works with relational databases like MySQL. But what if you want to choose a NoSQL solution like MongoDB? This article will show you how to start with Mongo in Laravel.
In Filament forms, we often add Placeholders for explanation. Another option is to use a Hint. Let me show you both, and which Filament fields support which one(s).
In Filament application, you may want to add buttons/links to other pages from a Filament Resource or to a custom page. How to get their URLs?