<?php
namespace App\KommaApp\Shop\seeds;
use App\KommaApp\Shop\Products\ProductGroupBehaviour\ProductGroupBehaviour;
use Illuminate\Database\Seeder;
class GroupBehaviour extends Seeder
{
public function run()
{
(new ProductGroupBehaviour(['title' => 'and']))->save();
(new ProductGroupBehaviour(['title' => 'or']))->save();
(new ProductGroupBehaviour(['title' => 'xor']))->save();
}
}