| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class OrderAddress extends BaseModel |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The database table used by the model. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $table = 'order_address'; |
||
| 15 | |||
| 16 | // Add the 'avatar' attachment to the fillable array so that it's mass-assignable on this model. |
||
| 17 | protected $fillable = ['company', 'phone', 'gender', 'initials', 'firstname', 'lastname', 'street', 'housenumber', 'housenumber_suffix', 'zipcode', 'city', 'country', 'order_id', 'modified_by_user_id']; |
||
| 18 | |||
| 19 | public function order() |
||
| 22 | } |
||
| 23 | } |