login controller update

This commit is contained in:
2019-07-15 23:42:34 -05:00
parent 66d6928e4d
commit 935b7b3ef1
6 changed files with 194 additions and 59 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
class UserAlt extends Model
{
//Table Name
public $table = 'user_alts';
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'name',
'main_id',
'character_id',
'avatar',
'access_token',
'refresh_token',
'inserted_at',
'expires_in',
'owner_has',
];
}