Skip to content

Commit

Permalink
Changes to files: Entities/Product.php
Browse files Browse the repository at this point in the history
  • Loading branch information
dedanirungu committed Apr 25, 2024
1 parent 0d5f607 commit c8d0df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Entities/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function fields(Blueprint $table = null): void
$this->fields->integer('description')->nullable()->html('editor');
$this->fields->integer('category_id')->nullable()->html('recordselect')->relation(['product', 'category']);
$this->fields->integer('type_id')->nullable()->html('recordselect')->relation(['product', 'type']);
$this->fields->integer('vendor')->nullable()->html('recordselect')->relation(['product', 'vendor']);
$this->fields->integer('vendor')->nullable()->html('recordselect')->relation(['partner']);
$this->fields->integer('image')->nullable()->html('image');
$this->fields->integer('gallery')->nullable()->html('gallery');
$this->fields->integer('tags')->nullable()->html('tags');
Expand Down

0 comments on commit c8d0df1

Please sign in to comment.