86 lines
1.7 KiB
PHP
86 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
|
|
|
class Address extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'addresses';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<string>
|
|
*/
|
|
protected $fillable = [
|
|
'contact_id',
|
|
'address_type_id',
|
|
'line_1',
|
|
'line_2',
|
|
'city',
|
|
'province',
|
|
'postal_code',
|
|
'country',
|
|
'latitude',
|
|
'longitude',
|
|
'lived_from_at',
|
|
'lived_until_at',
|
|
'is_past_address',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dates = [
|
|
'lived_from_at',
|
|
'lived_until_at',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'is_past_address' => 'boolean',
|
|
];
|
|
|
|
/**
|
|
* Get the contact associated with the address.
|
|
*
|
|
* @return BelongsTo
|
|
*/
|
|
public function contact(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Contact::class);
|
|
}
|
|
|
|
/**
|
|
* Get the address type object associated with the address.
|
|
*
|
|
* @return BelongsTo
|
|
*/
|
|
public function addressType(): BelongsTo
|
|
{
|
|
return $this->belongsTo(AddressType::class);
|
|
}
|
|
|
|
/**
|
|
* Get the address's feed item.
|
|
*
|
|
* @return MorphOne
|
|
*/
|
|
public function feedItem(): MorphOne
|
|
{
|
|
return $this->morphOne(ContactFeedItem::class, 'feedable');
|
|
}
|
|
}
|