/**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     Model::unguard();
     // $this->call(UserTableSeeder::class);
     \App\Models\Client::truncate();
     factory(\App\Models\Client::class, 10)->create();
     Model::reguard();
 }