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