- https://speakerdeck.com/willroth/50-laravel-tricks-in-50-minutes
- https://www.reddit.com/r/laravel/comments/3to60i/50_laravel_tricks/
- 1. Automatic Model Validation
| <?php | |
| namespace App\Libraries; | |
| /** | |
| * Class able to convert a flat array with parent ID's to a nested tree | |
| */ | |
| class FlatToTreeConverter | |
| { | |
| /** |