File: /home/imensosw/www/imenso.co/dev/wipit/app/Clients.php
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Tymon\JWTAuth\Contracts\JWTSubject;
class Clients extends Authenticatable implements JWTSubject
{
use Notifiable;
public $table = 'clients';
public function getJWTIdentifier()
{
return $this->getKey();
}
public function getJWTCustomClaims()
{
return [];
}
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'fname','lname','email','phone','ip','status','timezoneOffset'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password','remember_token'
];
}