/**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     University::truncate();
     $university = University::create(['name' => 'Tshwane University of Technology', 'description' => '', 'slogan' => 'We Empower People', 'chancellor' => 'Gwendoline Malegwale Ramokgopavsss', 'vice_chancellor' => 'Prof Lourens van Staden', 'website' => 'www.tut.ac.za']);
 }