2018-02-09 09:09:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\Sample\Models;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Interfaces\Model;
|
2018-02-09 09:09:36 +08:00
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class SampleTable
|
|
|
|
* @package Modules\Sample\Models
|
|
|
|
*/
|
|
|
|
class SampleTable extends Model
|
2018-02-09 09:09:36 +08:00
|
|
|
{
|
|
|
|
public $table = '';
|
2018-03-20 09:50:40 +08:00
|
|
|
|
2018-02-09 09:09:36 +08:00
|
|
|
protected $fillable = [];
|
|
|
|
}
|