public function run()
 {
     Review::create(['vote' => 1, 'body' => "Awesome service!", 'author' => 'Anonymous', 'isp_id' => 2]);
     Review::create(['vote' => 1, 'body' => "Smooth, fast technical support.", 'author' => 'Anonymous', 'isp_id' => 2]);
     Review::create(['vote' => 0, 'body' => "Malag, hindi ako makapagdl", 'author' => 'Anonymous', 'isp_id' => 2]);
 }
 public function find($id)
 {
     return Review::find($id);
 }