1 | <?php |
||
2 | |||
3 | namespace FaithGen\Gallery\Traits; |
||
4 | |||
5 | use FaithGen\Gallery\Models\Album; |
||
6 | |||
7 | trait HasManyAlbums |
||
8 | { |
||
9 | /** |
||
10 | * Links many albums to a model. |
||
11 | * @return mixed |
||
12 | */ |
||
13 | public function albums() |
||
14 | { |
||
15 | return $this->hasMany(Album::class); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
16 | } |
||
17 | } |
||
18 |