22 خطوط
499 B
PHP
22 خطوط
499 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
|
|
class Role extends Model
|
|
{
|
|
protected $fillable = ['name', 'display_name', 'description', 'guard_name'];
|
|
|
|
public function users(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(User::class)->withTimestamps();
|
|
}
|
|
|
|
public function permissions(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Permission::class)->withTimestamps();
|
|
}
|
|
}
|