Laravel Pro Tips
#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 ๐
Daniel Eckermann
#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