/
proc
/
3430793
/
root
/
proc
/
self
/
root
/
home
/
pay
/
server
/
app
/
Models
/
File Upload :
llllll
Current File: //proc/3430793/root/proc/self/root/home/pay/server/app/Models/User.php
<?php namespace App\Models; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; use Illuminate\Support\Facades\Hash; use Tymon\JWTAuth\Contracts\JWTSubject; class User extends Authenticatable implements JWTSubject { use HasApiTokens, HasFactory, Notifiable,Selector,SoftDeletes; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'fname', 'lname', 'name', 'password', 'mobile', 'user_type', 'token_sms', 'last_seen_at', 'active', 'send_sms', 'avatar_id', 'email', 'sts' ]; /** * The attributes that should be hidden for serialization. * * @var array<int, string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array<string, string> */ protected $casts = [ 'active'=> 'boolean', 'send_sms'=> 'boolean', ]; /** * Get the identifier that will be stored in the subject claim of the JWT. * * @return mixed */ public function getJWTIdentifier() { return $this->getKey(); } /** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ public function getJWTCustomClaims() { return []; } // hash password public function setPasswordAttribute($value){ $this->attributes['password'] = Hash::make($value); } }
Copyright ©2k19 -
Hexid
|
Tex7ure