/**
  * @param $id
  * @return mixed
  */
 public function show($id)
 {
     //$weighIns = WeighIns::find($id);
     $weighIn = WeighIn::with('user', 'site')->find($id);
     if (!$weighIn) {
         return $this->respondNotFound('WeighIn does not exist.');
     }
     return $this->respond(['data' => $this->weighInsTransformer->transform($weighIn)]);
 }