2FAuth/app/TwoFAccount.php
2019-06-10 23:42:13 +02:00

22 lines
363 B
PHP

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