public function getAdvertiserSelect($cln_id)
 {
     if (Auth::check()) {
         if (in_array('VIEW_ADVERTISER', $this->permission)) {
             if (User::isSuperAdmin()) {
                 $next_child = Advertiser::where('client_id', $cln_id)->get();
             } else {
                 $usr_company = $this->user_company();
                 $next_child = Advertiser::whereHas('GetClientID', function ($p) use($usr_company) {
                     $p->whereIn('user_id', $usr_company);
                 })->where('client_id', $cln_id)->get();
                 if (!$next_child) {
                     return Redirect::back()->withErrors(['success' => false, 'msg' => 'please Select your Client'])->withInput();
                 }
             }
             return view('bulk.ajaxTask')->with('taskAjax', 'showAdvertiserSelect')->with('next_child', $next_child);
         }
         return Redirect::back()->withErrors(['success' => false, 'msg' => "You don't have permission"]);
     }
 }