36 lines
519 B
PHP
36 lines
519 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ShippingAddress extends Model
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $attributes = [
|
|
'is_default' => false,
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'is_default' => 'bool',
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'user_id',
|
|
'zone_id',
|
|
'consignee',
|
|
'telephone',
|
|
'zone',
|
|
'address',
|
|
'is_default',
|
|
];
|
|
}
|