/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     // Get data from database
     $role = $this->roles->findOrFail($id);
     // Read ACL settings config for any permission access
     $acl = config('setting.acl');
     // Set data to return
     $data = ['role' => $role, 'acl' => $acl];
     // Return data and view
     return $this->view('admin.sentinel.roles.show')->data($data)->title('View Role');
 }