2FAuth/app/TwoFAccount.php

22 lines
363 B
PHP
Raw Normal View History

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