芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/app/Models/User.php
<?php namespace App\Models; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Passport\HasApiTokens; class User extends Authenticatable { use HasApiTokens, Notifiable; protected $dates = ['deleted_at']; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'firstname', 'lastname', 'username', 'email', 'password', 'phone', 'statut', 'avatar', 'role_id','is_all_warehouses' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', 'role_id' => 'integer', 'statut' => 'integer', 'is_all_warehouses' => 'integer', ]; public function oauthAccessToken() { return $this->hasMany('\App\Models\OauthAccessToken'); } public function roles() { return $this->belongsToMany(Role::class); } public function assignRole(Role $role) { return $this->roles()->save($role); } public function hasRole($role) { if (is_string($role)) { return $this->roles->contains('name', $role); } return !!$role->intersect($this->roles)->count(); } public function assignedWarehouses() { return $this->belongsToMany('App\Models\Warehouse'); } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage