Proje dosyaları eklendi
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||
|
||||
class Role extends Model
|
||||
{
|
||||
protected $fillable = ['name', 'label'];
|
||||
|
||||
public function permissions(): BelongsToMany { return $this->belongsToMany(Permission::class)->withTimestamps(); }
|
||||
public function users(): BelongsToMany { return $this->belongsToMany(User::class)->withTimestamps(); }
|
||||
}
|
||||
Reference in New Issue
Block a user