<?php
namespace App\Komma\Countries;
use App\Http\Controllers\Controller;
class CountryController extends Controller
{
public function getCountryUsingIP()
{
$countryService = app(CountryService::class);
$country = $countryService->getCountryByIp();
return response()->json($country);
}
}