option('zone'); if($zone < 1 || $zone > 3) { throw new Exception('The zone is not in the range!'); } $updateAkruDaily = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/admin/laporan/akrual/generateDaily',[ 'zone' => $zone ])->json(); if($updateAkruDaily == 'succesful') { return 0; }else{ return 'failed'; } } }