Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
torann
/
geoip
/
src
/
Editing: helpers.php
<?php if (!function_exists('geoip')) { /** * Get the location of the provided IP. * * @param string $ip * * @return \Torann\GeoIP\GeoIP|\Torann\GeoIP\Location */ function geoip($ip = null) { if (is_null($ip)) { return app('geoip'); } return app('geoip')->getLocation($ip); } }
Save
Cancel