diff --git a/app/Http/Requests/helpdesk/ProfileRequest.php b/app/Http/Requests/helpdesk/ProfileRequest.php index bf76d3dd4..3b995c906 100644 --- a/app/Http/Requests/helpdesk/ProfileRequest.php +++ b/app/Http/Requests/helpdesk/ProfileRequest.php @@ -36,8 +36,8 @@ class ProfileRequest extends Request } /** + *Check the mobile number is unique or not. * - *Check the mobile number is unique or not *@return string */ public function checkMobile() diff --git a/config/geoip.php b/config/geoip.php index 114928967..98f8a171a 100644 --- a/config/geoip.php +++ b/config/geoip.php @@ -1,4 +1,5 @@ [ 'maxmind_database' => [ - 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, + 'class' => \Torann\GeoIP\Services\MaxMindDatabase::class, 'database_path' => storage_path('app/geoip.mmdb'), - 'update_url' => 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz', - 'locales' => ['en'], + 'update_url' => 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz', + 'locales' => ['en'], ], 'maxmind_api' => [ - 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, - 'user_id' => env('MAXMIND_USER_ID'), + 'class' => \Torann\GeoIP\Services\MaxMindWebService::class, + 'user_id' => env('MAXMIND_USER_ID'), 'license_key' => env('MAXMIND_LICENSE_KEY'), - 'locales' => ['en'], + 'locales' => ['en'], ], 'ipapi' => [ - 'class' => \Torann\GeoIP\Services\IPApi::class, - 'secure' => true, - 'key' => env('IPAPI_KEY'), + 'class' => \Torann\GeoIP\Services\IPApi::class, + 'secure' => true, + 'key' => env('IPAPI_KEY'), 'continent_path' => storage_path('app/continents.json'), ], ], @@ -104,18 +105,18 @@ return [ | */ 'default_location' => [ - 'ip' => '127.0.0.0', - 'iso_code' => 'IN', - 'country' => 'INDIA', - 'city' => 'Bangalore', - 'state' => 'KA', - 'state_name' => 'Connecticut', + 'ip' => '127.0.0.0', + 'iso_code' => 'IN', + 'country' => 'INDIA', + 'city' => 'Bangalore', + 'state' => 'KA', + 'state_name' => 'Connecticut', 'postal_code' => '06510', - 'lat' => 41.31, - 'lon' => -72.92, - 'timezone' => 'Asia/Kolkata', - 'continent' => 'NA', - 'default' => true, - 'currency' => 'USD', + 'lat' => 41.31, + 'lon' => -72.92, + 'timezone' => 'Asia/Kolkata', + 'continent' => 'NA', + 'default' => true, + 'currency' => 'USD', ], -]; \ No newline at end of file +];