Skip to content

Commit

Permalink
added category group
Browse files Browse the repository at this point in the history
  • Loading branch information
A1Gard committed Sep 8, 2024
1 parent 4a6d0c6 commit e05338c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions database/seeders/PartSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,17 @@ public function run(): void
$part->sort = 1;
$part->save();

// -------------------------------------------------------------



$part = new Part();
$part->segment = 'products_page';
$part->part = 'ProductGridSidebar';
$part->area_id = Area::where('name', 'category')->first()->id;
$part->sort = 1;
$part->save();



// -------------------------------------------------------------
Expand Down

0 comments on commit e05338c

Please sign in to comment.