takeone/app/Models/Permission.php

33 lines
653 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Permission extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'slug',
'description',
];
/**
* Get the roles for the permission.
*/
public function roles(): BelongsToMany
{
return $this->belongsToMany(Role::class, 'role_permission')
->withTimestamps();
}
}