Current File : /home/tradevaly/ladybagcollection.com/project/app/Models/Admin.php |
<?php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Admin extends Authenticatable
{
protected $guard = 'admin';
protected $fillable = [
'name', 'email', 'phone', 'password', 'role_id', 'photo', 'created_at', 'updated_at', 'remember_token','shop_name'
];
protected $hidden = [
'password', 'remember_token',
];
public function role()
{
return $this->belongsTo('App\Models\Role')->withDefault(function ($data) {
foreach($data->getFillable() as $dt){
$data[$dt] = __('Deleted');
}
});
}
public function IsSuper(){
if ($this->id == 1) {
return true;
}
return false;
}
public function sectionCheck($value){
$sections = explode(" , ", $this->role->section);
if (in_array($value, $sections)){
return true;
}else{
return false;
}
}
}