PATH:
home
/
lab2454c
/
costbloc.com
/
app
/
Http
/
Controllers
<?php namespace App\Http\Controllers; use App\Lib\PhpInfo; class SystemInfoController extends Controller { /** * Application Info * Server Info * php.ini Info * Extension Info * File System Info * * @return \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory */ public function index() { $data['applicationVersion'] = config('martvill.version'); $data['phpVersion'] = phpversion(); $data['minimumPhpVersion'] = config('installer.core.minimumPhpVersion'); $data['mysqlVersion'] = \DB::select('select version()')[0]->{'version()'}; $data['minimumMysqlVersion'] = config('installer.core.minimumMysqlVersion'); $data['extensionArray'] = array_map('strtolower', array_keys(PhpInfo::phpinfo_modules())); $data['configurations'] = PhpInfo::phpinfo_configuration(); if (!empty($data['configurations'])) { $sizeConfigs = ['upload_max_filesize', 'post_max_size', 'memory_limit']; foreach ($sizeConfigs as $sizeConfig) { $byteSize = convertToBytes($data['configurations'][$sizeConfig]); $megabyteValue = convertBytesToOtherUnit($byteSize, 'M'); $data['configurations'][$sizeConfig] = $megabyteValue; } } $data['fileSystemPaths'] = [ "storage/app/", "storage/framework/", "storage/logs/", "bootstrap/cache/" ]; return view('admin.system.index', $data); } }
[-] CategoryController.php
[edit]
[-] ImportController.php
[edit]
[-] PermissionRoleController.php
[edit]
[-] BatchController.php
[edit]
[-] WithdrawalController.php
[edit]
[-] SsoController.php
[edit]
[-] ExportController.php
[edit]
[-] OrderStatusController.php
[edit]
[-] ProductSettingController.php
[edit]
[+]
..
[-] UserController.php
[edit]
[+]
Api
[-] EmailController.php
[edit]
[-] AttributeController.php
[edit]
[-] MailTemplateController.php
[edit]
[+]
Site
[-] AdminOrderController.php
[edit]
[-] AttributeGroupController.php
[edit]
[-] EmailConfigurationController.php
[edit]
[-] OrderSettingController.php
[edit]
[-] Controller.php
[edit]
[-] AccountSettingController.php
[edit]
[-] SystemInfoController.php
[edit]
[-] LoginController.php
[edit]
[-] AddonsMangerController.php
[edit]
[-] CurrencyController.php
[edit]
[-] BrandController.php
[edit]
[-] FilesController.php
[edit]
[-] ReviewController.php
[edit]
[-] LanguageController.php
[edit]
[-] RoleController.php
[edit]
[-] TransactionController.php
[edit]
[-] VendorController.php
[edit]
[-] PreferenceController.php
[edit]
[-] CompanySettingController.php
[edit]
[-] ProductController.php
[edit]
[-] DashboardController.php
[edit]
[-] MaintenanceModeController.php
[edit]
[+]
Vendor