Laravel Pro Tips
#eloquent #relationships #performance
Use withCount in Laravel when you want the number of related models for a given relationship without actually loading the models
Daniel Eckermann
#seeders
My 1st Laravel tip in here. Speed up your Seeders
Gariya
#collections #filter
โก ๏ธYou can filter Laravel Collections by a given class type using the whereInstanceOf method. You can filter by one particular type or by multiple at once. #laravel #php
Ash Allen ๐
#responses #macros
๐ฅ You can create custom @laravelphp Response macros for common tasks, such as returning an image response, returning API responses, etc. There are many additional places within Laravel where you can make use of macros!
Marcel Pociot ๐งช
#carbon #dates
Laravel ships with two great date helpers so that you don't have to use Carbon directly ๐
#rate limiting #ddos
Laravel Tip ๐ก You can create and attach rate limiters to your routes. For example, to prevent someone from sending thousands of password reset emails.
Philo Hermans
#testing #authentication
Laravel Tip: Working locally and don't want to log in manually every time when working with randomized database seeds? Use the `auth()->login()` helper to quickly log in with the first test user. #laravel #php @laravelphp