id(); $table->string('titre'); $table->string('image')->nullable(); $table->boolean('etat')->default(false); $table->datetime('deleted_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('slides'); } }