public function detail($cnpj)
 {
     $cnpj = preg_replace("/(\\d{2})(\\d{3})(\\d{3})(\\d{4})(\\d{2})/", "\$1.\$2.\$3/\$4-\$5", $cnpj);
     $Empresa = PagamentosJur::where('CNPJ', $cnpj)->first();
     return view('items', ['items' => PagamentosJur::where('CNPJ', $cnpj)->groupBy('CNPJ', 'idProjeto')->select('CNPJ', 'idProjeto', DB::raw('SUM(Valor) as Valor'))->orderBy('Valor', 'desc')->with('projeto')->get(), 'link' => 'projetos', 'title' => $Empresa ? $Empresa->NomeEmpresa : 'Sem Descrição']);
 }