apollopy / laravel-x-eloquent
Enhanced Eloquent for Laravel
Installs: 15 565
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: >=5.6.4
- illuminate/support: ^5.4
README
Installation
composer require apollopy/laravel-x-eloquent
After updating composer, add the service provider to the providers
array in config/app.php
ApolloPY\Eloquent\EloquentServiceProvider::class,
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Extension
sortByIds
$ids = [3, 1, 2]; $posts = Post::find($ids); // collection -> [1, 2, 3] $posts = $posts->sortByIds($ids); // collection -> [2 => 3, 0 => 1, 1 => 2] $posts = $posts->values(); // collection -> [3, 1, 2]
chunkByTime
Topic::where('user_id', 1)->chunkByTime(3600, function ($topics) { // });