| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class Address extends Model |
||
| 11 | { |
||
| 12 | use InteractsWithUuid; |
||
|
|
|||
| 13 | |||
| 14 | protected $guarded = [ |
||
| 15 | 'id', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get all of the owning addressable models. |
||
| 20 | */ |
||
| 21 | public function addressable(): MorphTo |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get Country. |
||
| 28 | */ |
||
| 29 | public function country(): BelongsTo |
||
| 34 |