public function ListareOferteSpeciale($categorie)
 {
     $categorie = PrimaPaginaCateg::findbyslug($categorie);
     $codCategorie = $categorie->Cod;
     // DB::enableQueryLog();
     $orase = Orase::whereHas('pachete', function ($query) use($codCategorie) {
         $query->where('Code', 'LIKE', '%|' . $codCategorie . '|%');
     })->with(['pachete' => function ($query) use($codCategorie) {
         $query->where('Code', 'LIKE', '%|' . $codCategorie . '|%')->groupBy('PackID');
     }])->select('AidaID', 'Name', 'Country')->distinct('AidaID')->get();
     // dd(DB::getQueryLog());
     // dd($oferte);
     return view('frontend.listare-oferte-speciale')->with('categorie', $categorie)->with('orase', $orase);
 }