incubator icon indicating copy to clipboard operation
incubator copied to clipboard

hope to add a single layer preload condition limit.

Open sowork opened this issue 5 years ago • 0 comments

e.g

$robots = Robot::with(
	[
		'Foo' => function (QueryBuilder $builder) {
			// Limit Bar
			$builder->limit(5)
                                     ->with('Bar');
		}
	]
);

sowork avatar Jun 06 '19 03:06 sowork