mahdi.cln 0 گزارش دادن ارسال شده در اسفند 99 من یک جدول به شکل زیر ایجاد کردم : اما در نمایش دادن دیتا ها در منوی تو در تو به مشکل برخوردم تو نمایش منوی عادی مشکلی نیست فقط تو در تو رو نتونستم چطور میتونم پیاده سازی بکنم؟ 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(); }); } نقل قول Share this post Link to post Share on other sites
saber 143 گزارش دادن ارسال شده در اسفند 99 برای ایجاد منوهای تو در تو و کلا سیستمهای اینشکلی باید از توابع بازگشتی استفاده کنید و با خود مادل جاری relation ایجاد کنید نقل قول Share this post Link to post Share on other sites