// database/migrations/xxxx_create_testimonials_table.php public function up() { Schema::create('testimonials', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('position')->nullable(); $table->text('content'); $table->string('avatar')->nullable(); $table->integer('rating')->default(5); $table->boolean('is_active')->default(true); $table->timestamps(); }); }