Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Services
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/app/Services/SmsService.php
<?php namespace App\Services; use App\Models\SmsGateway; use Smartisan\Settings\Facades\Settings; class SmsService { public string $gateway; public function gateway() : string { $this->gateway = 'twilio'; $gatewayId = Settings::group('site')->get('site_default_sms_gateway'); if ($gatewayId) { $gateway = SmsGateway::find($gatewayId); $this->gateway = $gateway->slug; } return $this->gateway; } }
v.01