/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $batch = Batch::findOrfail($id);
     //dd($batch);//
     return view('batch.show', compact('batch'));
     //
 }