connect(config('zabbix.username'), config('zabbix.password')); foreach ($zabbix->hosts() as $host) { Host::updateOrCreate([ "hostname" => $host['host'], ], [ "display_name" => $host['name'], "external_id" => $host['hostid'], ]); } return redirect()->back(); } }