| 1 | <?php |
||
| 10 | trait HasSocialAttributes |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Get social attributes. |
||
| 14 | * |
||
| 15 | * @return \Spatie\SchemalessAttributes\SchemalessAttributes |
||
| 16 | */ |
||
| 17 | public function getSocialAttribute(): SchemalessAttributes |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Scope with social attributes. |
||
| 24 | * |
||
| 25 | * @return \Illuminate\Database\Eloquent\Builder |
||
| 26 | */ |
||
| 27 | public function scopeWithSocial(): Builder |
||
| 31 | } |
||
| 32 |