/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $banks = Bank::paginate(15);
     return view('bank.index', compact('banks'));
 }