Current File : //proc/thread-self/root/proc/self/root/home/tradevaly/prioyshi.com/project/app/Models/Role.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
protected $fillable = ['name','section'];
public $timestamps = false;
public function admins()
{
return $this->hasMany('App\Models\Admin');
}
public function sectionCheck($value)
{
$sections = explode(" , ", $this->section);
if (in_array($value, $sections)){
return true;
}else{
return false;
}
}
}