/** * Run the database seeds. * * @return void */ public function run() { // Add the basic point types PointType::create(['name' => 'start', 'color' => '#91CA62']); PointType::create(['name' => 'decision', 'color' => '#54687D']); PointType::create(['name' => 'ending', 'color' => '#C6394D']); }