public function up() { Schema::create('blog_posts', function (Blueprint $table) { $table->id(); $table->string('title'); $table->text('excerpt')->nullable(); $table->text('body'); $table->string('image'); $table->string('slug')->unique(); $table->timestamps(); }); }