من یک جدول به شکل زیر ایجاد کردم :
اما در نمایش دادن دیتا ها در منوی تو در تو به مشکل برخوردم
تو نمایش منوی عادی مشکلی نیست فقط تو در تو رو نتونستم
چطور میتونم پیاده سازی بکنم؟
public function up()
{
Schema::create('menu_items', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('menu_id');
$table->string('title',255);
$table->string('url',255)->nullable();
$table->string('target',255)->nullable();
$table->string('icon_class',255)->nullable();
$table->string('color',255)->nullable();
$table->integer('order');
$table->string('route',255)->nullable();
$table->text('parameters')->nullable();
$table->foreign('menu_id')->references('id')->on('menus');
$table->integer('parent_id')->nullable();
$table->timestamps();
});
}