⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.26
Server IP:
15.204.235.159
Server:
Linux srv.techlup.co.ke 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
tech
/
shopadmin.techlup.co.ke
/
admin
/
app
/
Mail
/
View File Name :
WithdrawRequestMail.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 WithdrawRequestMail extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ protected $wallet; protected $status; public function __construct($status,$wallet) { $this->wallet = $wallet; $this->status = $status; } /** * Build the message. * * @return $this */ public function build() { // return $this->view('email-templates.add-fund')->with(['data'=>$this->data]); $company_name = BusinessSetting::where('key', 'business_name')->first()->value; $status = $this->status; if($status == 'approved'){ $data=EmailTemplate::where('type','store')->where('email_type', 'withdraw_approve')->first(); }elseif($status == 'denied'){ $data=EmailTemplate::where('type','store')->where('email_type', 'withdraw_deny')->first(); }else{ $data=EmailTemplate::where('type','admin')->where('email_type', 'withdraw_request')->first(); } $template=$data?$data->email_template:6; $wallet = $this->wallet; $store_name = $wallet->vendor->f_name; $title = Helpers::text_variable_data_format( value:$data['title']??'',store_name:$store_name??'',transaction_id:$transaction_id??''); $body = Helpers::text_variable_data_format( value:$data['body']??'',store_name:$store_name??'',transaction_id:$transaction_id??''); $footer_text = Helpers::text_variable_data_format( value:$data['footer_text']??'',store_name:$store_name??'',transaction_id:$transaction_id??''); $copyright_text = Helpers::text_variable_data_format( value:$data['copyright_text']??'',store_name:$store_name??'',transaction_id:$transaction_id??''); return $this->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,'wallet'=>$wallet,'transaction_id'=>$wallet->id,'time'=>$wallet->created_at,'amount'=>$wallet->amount]); } }