2FAuth/app/Models/Option.php

36 lines
473 B
PHP
Raw Normal View History

2021-12-01 13:47:20 +01:00
<?php
2021-12-02 13:15:53 +01:00
namespace App\Models;
2021-12-01 13:47:20 +01:00
use Illuminate\Database\Eloquent\Model;
class Option extends Model
{
/**
* The attributes that are mass assignable.
*
* @var string[]
2021-12-01 13:47:20 +01:00
*/
protected $fillable = [
'key',
'value',
];
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* Casts.
*
* @var array
*/
protected $casts = [];
}