| 1 | <?php |
||
| 11 | class Interest extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $table; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $fillable = [ |
||
| 22 | 'key', |
||
| 23 | 'value', |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var bool |
||
| 28 | */ |
||
| 29 | public $timestamps = false; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Interest constructor. |
||
| 33 | * @param array $attributes |
||
| 34 | */ |
||
| 35 | public function __construct(array $attributes = []) |
||
| 41 | } |