id(); $table->string('title'); $table->text('message'); $table->string('type')->default('info'); $table->string('link')->nullable(); $table->boolean('is_read')->default(false); $table->string('target_role')->default('admin'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifications'); } };