mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Warehouse extends AbstractModel
|
|
{
|
|
|
|
protected $table = 'warehouses';
|
|
|
|
protected $fillable = [
|
|
'name', 'email', 'street_one', 'street_two', 'city', 'state', 'post_code', 'country'
|
|
];
|
|
|
|
}
|