1 | <?php |
||
2 | |||
3 | namespace CleaniqueCoders\Profile\Concerns; |
||
4 | |||
5 | use Illuminate\Database\Eloquent\Relations\MorphMany; |
||
6 | |||
7 | /** |
||
8 | * Websiteable Trait. |
||
9 | */ |
||
10 | trait Websiteable |
||
11 | { |
||
12 | /** |
||
13 | * Get all websites. |
||
14 | */ |
||
15 | public function websites(): MorphMany |
||
16 | { |
||
17 | return $this->morphMany( |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
18 | config('profile.providers.website.model'), |
||
19 | config('profile.providers.website.type') |
||
20 | ); |
||
21 | } |
||
22 | } |
||
23 |