2FAuth/app/TwoFAccount.php
2020-01-07 16:46:50 +01:00

20 lines
297 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TwoFAccount extends Model
{
protected $fillable = ['service', 'account', 'uri', 'icon'];
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'twofaccounts';
}