من یک جدول ایجاد کردم به این شکل:
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();
});
}
توی نمایش دیتاها در منوی تو در تو به مشکل برخوردم
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟