2FAuth/app/TwoFAccount.php

20 lines
297 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TwoFAccount extends Model
2019-05-20 07:37:41 +02:00
{
protected $fillable = ['service', 'account', 'uri', 'icon'];
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'twofaccounts';
2019-05-20 07:37:41 +02:00
}