Latest Premium Tutorial
-
· 20 mins, 3984 words · premium
Laravel Database Structure: 11 Mistakes Developers Make
In Laravel projects, a lot of issues come from non-Laravel mistakes, database structure is one of those. In this tutorial, we will cover the most typical mistakes devs make when structuring DB in Laravel.
Newest content
-
· 3 mins, 416 words
PHP Exceptions: Laravel Package Example
-
· 2 mins, 257 words
Filament: How to Change Background of Login Page? (or any page)
-
Random Quick Laravel Tip:
Validate email with TLD domain requiredBy default, the
email
validation rule will accept an email without tld domain (ie:taylor@laravel
,povilas@ldaily
)But if you want to make sure the email must have a tld domain (ie:
taylor@laravel.com
,povilas@ldaily.com
), useemail:filter
rule.['email' => 'required|email', // before'email' => 'required|email:filter', // after],Tip given by @Chris1904
-
· 25 mins, 4879 words · premium
Filament: Stripe One-Time Payment Form with Elements
-
· 2 mins, 257 words
Black Friday 2023: 40% Off ALL Laravel Daily Products
-
· 2 mins, 228 words
Filament: Table Row Action - View Modal with Infolist
-
Premium Course: Laravel Web to Mobile API: Reuse Old Code with Services
-
· 2 mins, 314 words
Filament: Input Prefix/Suffix - Dynamic Based on Other Input
-
· 4 mins, 615 words
Filament: Repeater With Live Calculations - Total Price Example
-
· 7 mins, 1396 words · premium
Laravel String Helpers: 16 Open-Source Examples
-
· 4 mins, 642 words
Filament: Excel Export and Import Examples - Two Packages
-
· 7 mins, 1212 words
Filament Activity Logs: THREE Packages [Comparison Review]