Tutorials for collections
-
Course: Laravel Collections Chains: 15 Real Examples
Collections in Laravel are "hidden gems": everyone has heard of them, but not everyone is...
-
May 06, 2021 · 12:19
Video: Laravel: Search Many Models with Collections or Algolia
-
July 12, 2022 · 10:52
Video: Laravel Collections Chains: 3 Examples and NEW Course
-
July 14, 2021 · 10:04
Video: Laravel Collections: 5 Methods with Real Examples
-
· 5 mins, 961 words · premium
Article: Multiple Models Search: into One Collection with Pagination
-
· 4 mins, 611 words
Article: 10 less-known (but awesome!) Laravel Collections methods
-
· 3 mins, 458 words
Article: Laravel Eloquent/Collection pluck() method: 3 Practical Examples
-
Random Quick Laravel Tip:
Laravel Scopes can be combined using "Higher Order" orWhere MethodFollowing example from the Docs.
Before:
User::popular()->orWhere(function (Builder $query) {$query->active();})->get()After:
User::popular()->orWhere->active()->get();Tip given by @TheLaravelDev
-
Package: spatie/laravel-collection-macros
A set of useful Laravel collection macros
-
May 18, 2020 · 5:38
Video: Laravel Collections or Foreach? Shorter? More Readable?
-
April 18, 2021 · 5:22
Video: Laravel Group Data: in Collections or in Eloquent Query?
-
June 07, 2022 · 4:44
Video: Laravel Collections vs Arrays: Performance Test