Esempio n. 1
0
 public function show($id)
 {
     $dept = $this->dept->findOrFail($id);
     return Response::json(['success' => true, 'error' => false, 'results' => $dept->toArray()]);
 }