id(); $table->string('icon'); $table->string('title'); $table->string('link')->nullable(); $table->text('description'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('useful_links'); } };