Esempio n. 1
0
 /**
  * Display the specified resource.
  * GET /statistics/{id}.
  *
  * @param int $id
  *
  * @return Response
  */
 public function show($society, $gid, $id)
 {
     $data['statistic'] = Statistic::with('group')->find($id);
     return View::make('statistics.show', $data);
 }