changed sms service url

This commit is contained in:
Hamidreza Ranjbarpour
2024-09-29 13:33:40 +00:00
parent bc26b75aea
commit bc4ae8d3a8
3 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ class SmsClass
if (App::environment('production')) {
$client = new SoapClient("http://sms1000.ir/webservice/sms.asmx?WSDL");
$client = new SoapClient("http://172.30.5.36/webservice/sms.asmx?WSDL");
$date = date('d-m-y h:i:s');
$date = str_replace(" ", "T", $date);
$result = $client->Send(

View File

@@ -25,5 +25,6 @@ class AppServiceProvider extends ServiceProvider
public function boot()
{
Schema::defaultStringLength(191);
\URL::forceScheme('https');
}
}