/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function getAll()
 {
     return view("vendedores.all")->with('vendedores', Vendedor::with("client")->paginate(4)->setPath('all'));
 }