1 | <?php |
||
7 | class Interest extends Model |
||
8 | { |
||
9 | /** |
||
10 | * The associated table. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $table; |
||
15 | |||
16 | /** |
||
17 | * The attributes that are mass assignable. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $fillable = [ |
||
22 | 'key', |
||
23 | 'value', |
||
24 | ]; |
||
25 | |||
26 | /** |
||
27 | * Indicates if the model should be timestamped. |
||
28 | * |
||
29 | * @var bool |
||
30 | */ |
||
31 | public $timestamps = false; |
||
32 | |||
33 | /** |
||
34 | * Interest constructor. |
||
35 | * |
||
36 | * @param array $attributes |
||
37 | */ |
||
38 | 3 | public function __construct(array $attributes = []) |
|
44 | } |
||
45 |