id(); $table->string('title'); $table->string('image')->nullable(); $table->string('duration'); $table->string('level'); $table->string('author'); $table->longText('desc')->nullable(); $table->integer('student')->default(0); $table->decimal('rating', 3, 2)->default(0.00); $table->string('badge')->nullable(); $table->boolean('trending')->default(false); $table->string('course_code')->unique(); $table->string('status')->default('draft'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('courses'); } };