<?php namespace App\Komma\Countries; use Illuminate\Support\Facades\Route; class CountryRoutes { public static function get() { Route::get('api/country', CountryController::class.'@getCountryUsingIP'); } }