33 lines
782 B
PHP
33 lines
782 B
PHP
<?php
|
|
/**
|
|
* Address.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-06-28 15:22:18
|
|
* @modified 2022-06-28 15:22:18
|
|
*/
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Address extends Base
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['customer_id', 'name', 'phone', 'country_id', 'zone_id', 'zone', 'city_id', 'city', 'zipcode', 'address_1', 'address_2'];
|
|
|
|
public function country(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Country::class);
|
|
}
|
|
|
|
public function zone(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Zone::class);
|
|
}
|
|
}
|