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