IMMREX7
<?php
namespace App;
use Laravel\Passport\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use App\Traits;
class Parents extends Authenticatable {
// use Traits\AutoUpdateUserColumns;
use Notifiable;
use HasApiTokens;
protected $guard = 'student';
protected $primaryKey = 'idParent';
protected $table = 'parents';
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}
Copyright © 2021 -