for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cortex\Foundation\Http\Controllers\Frontarea;
use Cortex\Foundation\Http\Controllers\AbstractController;
class GenericController extends AbstractController
{
/**
* Show my country.
*
* @return string
*/
public function country(): string
return geoip(request()->getClientIp())->iso_code;
}