/**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $user = new \App\Login();
     $user->firstname = "shima";
     $user->lastname = "rahman";
     $user->email = "*****@*****.**";
     $user->password = Hash::make('myPassword');
     $user->telephone = "56789907654";
     $user->admin = 1;
     $user->save();
 }