| 1 | <?php |
||
| 7 | class Customer extends Model |
||
| 8 | { |
||
| 9 | protected $table = 'customers'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * The attributes that are mass assignable. |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | protected $fillable = [ |
||
| 17 | 'company', 'fname', 'name', 'address', |
||
| 18 | 'zipcode', 'city', 'country', 'phone', |
||
| 19 | 'mobile', 'email', 'vat' |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 24 | */ |
||
| 25 | public function callbacks() |
||
| 29 | } |
||
| 30 |