id(); $table->string('name'); $table->string('path'); $table->string('extension'); $table->string('mime_type'); $table->string('parent_type'); $table->string('descriptionImg')->nullable(); $table->string('caption')->nullable(); $table->enum('type',['featured_image','gallery_image']); $table->morphs('uploadable'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uploads'); } }