telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log15593705 KBJuly 18 2025 17:19:510644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
notificationUtil = $notificationUtil; } /** * Execute the console command. * * @return mixed */ public function handle() { try { ini_set('max_execution_time', 0); ini_set('memory_limit', '512M'); $templates = NotificationTemplate::where('template_for', 'payment_reminder') ->where(function ($q) { $q->where('auto_send', 1) ->orWhere('auto_send_sms', 1) ->orWhere('auto_send_wa_notif', 1); }) ->get(); foreach ($templates as $template) { $business = Business::with(['currency'])->where('id', $template->business_id)->first(); $data = [ 'subject' => $template->subject ?? '', 'sms_body' => $template->sms_body ?? '', 'whatsapp_text' => $template->whatsapp_text ?? '', 'email_body' => $template->email_body ?? '', 'template_for' => 'payment_reminder', 'cc' => $template->cc ?? '', 'bcc' => $template->bcc ?? '', 'auto_send' => ! empty($template->auto_send) ? 1 : 0, 'auto_send_sms' => ! empty($template->auto_send_sms) ? 1 : 0, 'auto_send_wa_notif' => ! empty($template->auto_send_wa_notif) ? 1 : 0, ]; $orig_data = [ 'email_body' => $data['email_body'], 'sms_body' => $data['sms_body'], 'subject' => $data['subject'], 'whatsapp_text' => $data['whatsapp_text'], ]; if (! empty($data['auto_send']) || ! empty($data['auto_send_sms'])) { $overdue_sells = Transaction::where('transactions.business_id', $business->id) ->where('transactions.type', 'sell') ->where('transactions.status', 'final') ->leftjoin('activity_log as a', function ($join) { $join->on('a.subject_id', '=', 'transactions.id') ->where('subject_type', \App\Transaction::class) ->where('description', 'payment_reminder'); }) ->whereNull('a.id') ->with(['contact', 'payment_lines']) ->select('transactions.*') ->groupBy('transactions.id') ->OverDue() ->get(); foreach ($overdue_sells as $sell) { $tag_replaced_data = $this->notificationUtil->replaceTags($business, $orig_data, $sell); $data['email_body'] = $tag_replaced_data['email_body']; $data['sms_body'] = $tag_replaced_data['sms_body']; $data['subject'] = $tag_replaced_data['subject']; $data['whatsapp_text'] = $tag_replaced_data['whatsapp_text']; $data['email_settings'] = $business->email_settings ?? []; $data['sms_settings'] = $business->sms_settings ?? []; //send email notification if (! empty($data['auto_send']) && ! empty($sell->contact->email)) { try { Notification::route('mail', [$sell->contact->email]) ->notify(new CustomerNotification($data)); $this->notificationUtil->activityLog($sell, 'payment_reminder', null, ['email' => $sell->contact->email, 'is_automatic' => true], false); } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); } } //send sms notification if (! empty($data['auto_send_sms']) && ! empty($sell->contact->mobile)) { try { $this->notificationUtil->sendSms($data); $this->notificationUtil->activityLog($sell, 'payment_reminder', null, ['mobile' => $sell->contact->mobile, 'is_automatic' => true], false); } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); } } //TODO:: whatsapp notification to be implemented } } } } catch (\Exception $e) { \Log::emergency('File:'.$e->getFile().'Line:'.$e->getLine().'Message:'.$e->getMessage()); exit($e->getMessage()); } } }