| Package Data | |
|---|---|
| Maintainer Username: | AnourValar |
| Package Create Date: | 2020-04-05 |
| Package Last Update: | 2025-12-04 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-05 03:01:56 |
| Package Statistics | |
|---|---|
| Total Downloads: | 14,824,467 |
| Monthly Downloads: | 1,152,623 |
| Daily Downloads: | 51,136 |
| Total Stars: | 111 |
| Total Watchers: | 2 |
| Total Forks: | 11 |
| 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) {
// ...
}