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 c203a23 commit e4f4a49Copy full SHA for e4f4a49
tests/AppendTest.php
@@ -48,6 +48,28 @@ public function it_can_append_case_insensitive()
48
$this->assertAttributeLoaded($model, 'fullname');
49
}
50
51
+ /** @test */
52
+ public function it_can_append_collections()
53
+ {
54
+ $model = $this
55
+ ->createQueryFromAppendRequest('FullName')
56
+ ->allowedAppends('fullname')
57
+ ->get();
58
+
59
+ $this->assertAttributeLoaded($model, 'fullname');
60
+ }
61
62
63
+ public function it_can_append_paginates()
64
65
66
67
68
+ ->paginate();
69
70
71
72
73
/** @test */
74
public function it_guards_against_invalid_appends()
75
{
0 commit comments