We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85b2878 commit 025b24cCopy full SHA for 025b24c
src/Illuminate/Database/Eloquent/Relations/Relation.php
@@ -10,12 +10,14 @@
10
use Illuminate\Database\Eloquent\ModelNotFoundException;
11
use Illuminate\Database\MultipleRecordsFoundException;
12
use Illuminate\Database\Query\Expression;
13
+use Illuminate\Support\Traits\Conditionable;
14
+use Illuminate\Support\Traits\Tappable;
15
use Illuminate\Support\Traits\ForwardsCalls;
16
use Illuminate\Support\Traits\Macroable;
17
18
abstract class Relation implements BuilderContract
19
{
- use ForwardsCalls, Macroable {
20
+ use Conditionable, ForwardsCalls, Macroable, Tappable {
21
Macroable::__call as macroCall;
22
}
23
0 commit comments