sarga/packages/Webkul/CustomerDocument/src/Models/CustomerDocument.php

13 lines
389 B
PHP
Raw Normal View History

2019-06-21 19:32:33 +00:00
<?php
namespace Webkul\CustomerDocument\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\CustomerDocument\Contracts\CustomerDocument as CustomerDocumentContract;
class CustomerDocument extends Model implements CustomerDocumentContract
{
protected $table = 'customer_documents';
protected $fillable = ['name', 'path', 'customer_id', 'description', 'type', 'status'];
2019-06-21 19:32:33 +00:00
}