Package Data | |
---|---|
Maintainer Username: | AnourValar |
Package Create Date: | 2020-04-05 |
Package Last Update: | 2025-05-28 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-06-15 03:12:59 |
Package Statistics | |
---|---|
Total Downloads: | 9,177,834 |
Monthly Downloads: | 758,381 |
Daily Downloads: | 12,244 |
Total Stars: | 105 |
Total Watchers: | 3 |
Total Forks: | 9 |
Total Open Issues: | 0 |
Supports Laravel 6+
composer require anourvalar/eloquent-serialize
$package = \EloquentSerialize::serialize(
\App\User::query()
->with('userPhones')
->where('id', '>', '10')
->limit(20)
);
$builder = \EloquentSerialize::unserialize($package);
foreach ($builder->get() as $item) {
// ...
}