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';
|
|
|
|
|
|
2019-07-30 10:52:27 +00:00
|
|
|
protected $fillable = ['name', 'path', 'customer_id', 'description', 'type', 'status'];
|
2019-06-21 19:32:33 +00:00
|
|
|
}
|