48 lines
1008 B
PHP
48 lines
1008 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\Multitenantable;
|
|
use DateTimeInterface;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class CustomerAddress extends Model
|
|
{
|
|
use SoftDeletes, Multitenantable;
|
|
|
|
protected $primaryKey = 'uuid';
|
|
public $incrementing = false;
|
|
protected $keyType = 'string';
|
|
|
|
protected $fillable = [
|
|
'uuid',
|
|
'tenant_id',
|
|
'customer_id',
|
|
'label',
|
|
'full_address',
|
|
'latitude',
|
|
'longitude',
|
|
'notes'
|
|
];
|
|
|
|
protected $casts = [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
protected function serializeDate(DateTimeInterface $date)
|
|
{
|
|
return $date->format('Y-m-d H:i:s');
|
|
}
|
|
|
|
|
|
public function customer(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Customer::class, 'customer_id', 'uuid');
|
|
}
|
|
}
|