feat: implement Menu management with CRUD operations and database migrations
This commit is contained in:
10
app/Domains/Menu/Models/TenantMenu.php
Normal file
10
app/Domains/Menu/Models/TenantMenu.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\Menu\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||||
|
||||
class TenantMenu extends Pivot
|
||||
{
|
||||
protected $table = 'tenant_menues';
|
||||
}
|
||||
Reference in New Issue
Block a user