/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $prisoners = Prisoner::paginate(30);
     return view('prisoner.index', ['prisoners' => $prisoners]);
 }