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