/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $clientes = cliente::paginate(10);
     return view('cliente.index', compact('clientes'));
 }