hi every one.
i want to store some photos for a product. i should use polymorphic and relationships in Laravel. did it but i do not know how should store photos name in images table. this table has this schema :
Schema::create('images', function (Blueprint $table) {
$table->id('id');
$table->text('file');
$table->unsignedInteger('imageable_id');
$table->string('imageable_type');
$table->timestamps();
});