13 lines
316 B
PHP
13 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
|
|
class Permission extends Model
|
|
{
|
|
protected $fillable = ['name', 'label'];
|
|
public function roles(): BelongsToMany { return $this->belongsToMany(Role::class)->withTimestamps(); }
|
|
}
|