uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
admin.brosiper.codeskitter.site
/
app
/
Mail
/
SubscriptionDeadLineWarning.php
/
/
<?php namespace App\Mail; use App\CentralLogics\Helpers; use App\Models\BusinessSetting; use App\Models\EmailTemplate; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class SubscriptionDeadLineWarning extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ protected $name; public function __construct($name) { $this->name = $name; } /** * Build the message. * * @return $this */ public function build() { $company_name = BusinessSetting::where('key', 'business_name')->first()->value; $data=EmailTemplate::where('type','store')->where('email_type', 'subscription-deadline')->first(); $template=$data?$data->email_template:5; $url = '' ; $store_name = $this->name; $title = Helpers::text_variable_data_format( value:$data['title']??'',store_name:$store_name??''); $body = Helpers::text_variable_data_format( value:$data['body']??'',store_name:$store_name??''); $footer_text = Helpers::text_variable_data_format( value:$data['footer_text']??'',store_name:$store_name??''); $copyright_text = Helpers::text_variable_data_format( value:$data['copyright_text']??'',store_name:$store_name??''); return $this->subject(translate('Subscription_is_about_to_end'))->view('email-templates.new-email-format-'.$template, ['company_name'=>$company_name,'data'=>$data,'title'=>$title,'body'=>$body,'footer_text'=>$footer_text,'copyright_text'=>$copyright_text,'url'=>$url]); } }
/home/users/unlimited/www/admin.brosiper.codeskitter.site/app/Mail/SubscriptionDeadLineWarning.php