*/ protected $fillable = [ 'is_address', 'is_delivery', 'name', 'email', 'phone', 'address', 'city', 'state', 'country', 'zip', ]; /** * Return the customer having the address. */ public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } }