PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stevebauman
/
location
/
src
/
Drivers
/
Editing: IpApiPro.php
<?php namespace Stevebauman\Location\Drivers; class IpApiPro extends IpApi { /** * {@inheritDoc} */ protected function url($ip) { $key = config('location.ip_api.token'); return "https://pro.ip-api.com/json/$ip?key=$key"; } }
SAVE
CANCEL