Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php use App\Http\Controllers\Api; use Illuminate\Support\Facades\Route; Route::group(ar..
Decoded Output download
<?php
use App\Http\Controllers\Api; use Illuminate\Support\Facades\Route; Route::group(array("prefix" => "v1", "middleware" => array("api", "throttle:api")), function () { Route::get("/", function () { return response()->json(array("status" => "error", "message" => "404 endpoint not found. This is the base URL for the API and does not return anything itself. Please check the API reference at https://snipe-it.readme.io/reference to find a valid API endpoint.", "payload" => null), 404); }); Route::group(array("prefix" => "account"), function () { Route::get("requests", array(Api\ProfileController::class, "requestedAssets"))->name("api.assets.requested"); Route::get("requestable/hardware", array(Api\AssetsController::class, "requestable"))->name("api.assets.requestable"); Route::post("personal-access-tokens", array(Api\ProfileController::class, "createApiToken"))->name("api.personal-access-token.create"); Route::get("personal-access-tokens", array(Api\ProfileController::class, "showApiTokens"))->name("api.personal-access-token.index"); Route::delete("personal-access-tokens/{tokenId}", array(Api\ProfileController::class, "deleteApiToken"))->name("api.personal-access-token.delete"); }); Route::group(array("prefix" => "accessories"), function () { Route::get("{accessory}/checkedout", array(Api\AccessoriesController::class, "checkedout"))->name("api.accessories.checkedout"); Route::post("{accessory}/checkout", array(Api\AccessoriesController::class, "checkout"))->name("api.accessories.checkout"); Route::post("{accessory}/checkin", array(Api\AccessoriesController::class, "checkin"))->name("api.accessories.checkin"); Route::get("selectlist", array(Api\AccessoriesController::class, "selectlist"))->name("api.accessories.selectlist"); }); Route::resource("accessories", Api\AccessoriesController::class, array("names" => array("index" => "api.accessories.index", "show" => "api.accessories.show", "update" => "api.accessories.update", "store" => "api.accessories.store", "destroy" => "api.accessories.destroy"), "except" => array("create", "edit"), "parameters" => array("accessory" => "accessory_id"))); Route::group(array("prefix" => "categories"), function () { Route::get("{item_type}/selectlist", array(Api\CategoriesController::class, "selectlist"))->name("api.categories.selectlist"); }); Route::resource("categories", Api\CategoriesController::class, array("names" => array("index" => "api.categories.index", "show" => "api.categories.show", "update" => "api.categories.update", "store" => "api.categories.store", "destroy" => "api.categories.destroy"), "except" => array("create", "edit"), "parameters" => array("category" => "category_id"))); Route::group(array("prefix" => "companies"), function () { Route::get("selectlist", array(Api\CompaniesController::class, "selectlist"))->name("api.companies.selectlist"); }); Route::resource("companies", Api\CompaniesController::class, array("names" => array("index" => "api.companies.index", "show" => "api.companies.show", "update" => "api.companies.update", "store" => "api.companies.store", "destroy" => "api.companies.destroy"), "except" => array("create", "edit"), "parameters" => array("company" => "company_id"))); Route::group(array("prefix" => "departments"), function () { Route::get("selectlist", array(Api\DepartmentsController::class, "selectlist"))->name("api.departments.selectlist"); }); Route::resource("departments", Api\DepartmentsController::class, array("names" => array("index" => "api.departments.index", "show" => "api.departments.show", "update" => "api.departments.update", "store" => "api.departments.store", "destroy" => "api.departments.destroy"), "except" => array("create", "edit"), "parameters" => array("department" => "department_id"))); Route::group(array("prefix" => "components"), function () { Route::get("selectlist", array(Api\ComponentsController::class, "selectlist"))->name("api.components.selectlist"); Route::get("{component}/assets", array(Api\ComponentsController::class, "getAssets"))->name("api.components.assets"); }); Route::post("components/{id}/checkin", array(Api\ComponentsController::class, "checkin"))->name("api.components.checkin"); Route::post("components/{id}/checkout", array(Api\ComponentsController::class, "checkout"))->name("api.components.checkout"); Route::resource("components", Api\ComponentsController::class, array("names" => array("index" => "api.components.index", "show" => "api.components.show", "update" => "api.components.update", "store" => "api.components.store", "destroy" => "api.components.destroy"), "except" => array("create", "edit"), "parameters" => array("component" => "component_id"))); Route::group(array("prefix" => "consumables"), function () { Route::get("selectlist", array(Api\ConsumablesController::class, "selectlist"))->name("api.consumables.selectlist"); Route::get("{id}/users", array(Api\ConsumablesController::class, "getDataView"))->name("api.consumables.show.users"); Route::post("{consumable}/checkout", array(Api\ConsumablesController::class, "checkout"))->name("api.consumables.checkout"); }); Route::resource("consumables", Api\ConsumablesController::class, array("names" => array("index" => "api.consumables.index", "show" => "api.consumables.show", "update" => "api.consumables.update", "store" => "api.consumables.store", "destroy" => "api.consumables.destroy"), "except" => array("create", "edit"), "parameters" => array("consumable" => "consumable_id"))); Route::resource("depreciations", Api\DepreciationsController::class, array("names" => array("index" => "api.depreciations.index", "show" => "api.depreciations.show", "update" => "api.depreciations.update", "store" => "api.depreciations.store", "destroy" => "api.depreciations.destroy"), "except" => array("create", "edit"), "parameters" => array("depreciations" => "depreciation_id"))); Route::get("reports/depreciation", array(Api\AssetsController::class, "index"))->name("api.depreciation-report.index"); Route::group(array("prefix" => "fields"), function () { Route::post("fieldsets/{id}/order", array(Api\CustomFieldsController::class, "postReorder"))->name("api.customfields.order"); Route::post("{field}/associate", array(Api\CustomFieldsController::class, "associate"))->name("api.customfields.associate"); Route::post("{field}/disassociate", array(Api\CustomFieldsController::class, "disassociate"))->name("api.customfields.disassociate"); }); Route::resource("fields", Api\CustomFieldsController::class, array("names" => array("index" => "api.customfields.index", "show" => "api.customfields.show", "update" => "api.customfields.update", "store" => "api.customfields.store", "destroy" => "api.customfields.destroy"), "except" => array("create", "edit"), "parameters" => array("field" => "field_id"))); Route::group(array("prefix" => "fieldsets"), function () { Route::post("{fieldset}/fields", array(Api\CustomFieldsetsController::class, "fields"))->name("api.fieldsets.fields"); Route::post("{fieldset}/fields/{model}", array(Api\CustomFieldsetsController::class, "fieldsWithDefaultValues"))->name("api.fieldsets.fields-with-default-value"); }); Route::resource("fieldsets", Api\CustomFieldsetsController::class, array("names" => array("index" => "api.fieldsets.index", "show" => "api.fieldsets.show", "update" => "api.fieldsets.update", "store" => "api.fieldsets.store", "destroy" => "api.fieldsets.destroy"), "except" => array("create", "edit"), "parameters" => array("fieldset" => "fieldset_id"))); Route::resource("groups", Api\GroupsController::class, array("names" => array("index" => "api.groups.index", "show" => "api.groups.show", "update" => "api.groups.update", "store" => "api.groups.store", "destroy" => "api.groups.destroy"), "except" => array("create", "edit"), "parameters" => array("group" => "group_id"))); Route::group(array("prefix" => "hardware"), function () { Route::get("selectlist", array(Api\AssetsController::class, "selectlist"))->name("assets.selectlist"); Route::get("{asset_id}/licenses", array(Api\AssetsController::class, "licenses"))->name("api.assets.licenselist"); Route::get("bytag/{tag}", array(Api\AssetsController::class, "showByTag"))->name("assets.show.bytag"); Route::get("bytag/{any}", array(Api\AssetsController::class, "showByTag"))->name("api.assets.show.bytag")->where("any", ".*"); Route::post("bytag/{any}/checkout", array(Api\AssetsController::class, "checkoutByTag"))->name("api.assets.checkout.bytag"); Route::post("bytag/{any}/checkin", array(Api\AssetsController::class, "checkinbytag"))->name("api.asset.checkinbytagPath"); Route::post("checkinbytag", array(Api\AssetsController::class, "checkinbytag"))->name("api.asset.checkinbytag"); Route::get("byserial/{any}", array(Api\AssetsController::class, "showBySerial"))->name("api.assets.show.byserial")->where("any", ".*"); Route::get("audit/{audit}", array(Api\AssetsController::class, "index"))->name("api.asset.to-audit"); Route::post("audit", array(Api\AssetsController::class, "audit"))->name("api.asset.audit"); Route::post("{id}/checkin", array(Api\AssetsController::class, "checkin"))->name("api.asset.checkin"); Route::post("{id}/checkout", array(Api\AssetsController::class, "checkout"))->name("api.asset.checkout"); Route::post("{asset_id}/restore", array(Api\AssetsController::class, "restore"))->name("api.assets.restore"); }); Route::resource("hardware", Api\AssetsController::class, array("names" => array("index" => "api.assets.index", "show" => "api.assets.show", "update" => "api.assets.update", "store" => "api.assets.store", "destroy" => "api.assets.destroy"), "except" => array("create", "edit"), "parameters" => array("asset" => "asset_id"))); Route::resource("maintenances", Api\AssetMaintenancesController::class, array("names" => array("index" => "api.maintenances.index", "show" => "api.maintenances.show", "update" => "api.maintenances.update", "store" => "api.maintenances.store", "destroy" => "api.maintenances.destroy"), "except" => array("create", "edit"), "parameters" => array("maintenance" => "maintenance_id"))); Route::group(array("prefix" => "imports"), function () { Route::post("process/{import}", array(Api\ImportController::class, "process"))->name("api.imports.importFile"); }); Route::resource("imports", Api\ImportController::class, array("names" => array("index" => "api.imports.index", "show" => "api.imports.show", "update" => "api.imports.update", "store" => "api.imports.store", "destroy" => "api.imports.destroy"), "except" => array("create", "edit"), "parameters" => array("import" => "import_id"))); Route::group(array("prefix" => "labels"), function () { Route::get("{name}", array(Api\LabelsController::class, "show"))->where("name", ".*")->name("api.labels.show"); Route::get('', array(Api\LabelsController::class, "index"))->name("api.labels.index"); }); Route::group(array("prefix" => "licenses"), function () { Route::get("selectlist", array(Api\LicensesController::class, "selectlist"))->name("api.licenses.selectlist"); }); Route::resource("licenses", Api\LicensesController::class, array("names" => array("index" => "api.licenses.index", "show" => "api.licenses.show", "update" => "api.licenses.update", "store" => "api.licenses.store", "destroy" => "api.licenses.destroy"), "except" => array("create", "edit"), "parameters" => array("licenses" => "license_id"))); Route::resource("licenses.seats", Api\LicenseSeatsController::class, array("names" => array("index" => "api.licenses.seats.index", "show" => "api.licenses.seats.show", "update" => "api.licenses.seats.update"), "except" => array("create", "edit", "destroy", "store"), "parameters" => array("licenseseat" => "licenseseat_id"))); Route::group(array("prefix" => "locations"), function () { Route::get("selectlist", array(Api\LocationsController::class, "selectlist"))->name("api.locations.selectlist"); Route::get("{location}/users", array(Api\LocationsController::class, "getDataViewUsers"))->name("api.locations.viewusers"); Route::get("{location}/assets", array(Api\LocationsController::class, "getDataViewAssets"))->name("api.locations.viewassets"); }); Route::resource("locations", Api\LocationsController::class, array("names" => array("index" => "api.locations.index", "show" => "api.locations.show", "update" => "api.locations.update", "store" => "api.locations.store", "destroy" => "api.locations.destroy"), "except" => array("create", "edit"), "parameters" => array("location" => "location_id"))); Route::group(array("prefix" => "manufacturers"), function () { Route::get("selectlist", array(Api\ManufacturersController::class, "selectlist"))->name("api.manufacturers.selectlist"); Route::post("{id}/restore", array(Api\ManufacturersController::class, "restore"))->name("api.manufacturers.restore"); }); Route::resource("manufacturers", Api\ManufacturersController::class, array("names" => array("index" => "api.manufacturers.index", "show" => "api.manufacturers.show", "update" => "api.manufacturers.update", "store" => "api.manufacturers.store", "destroy" => "api.manufacturers.destroy"), "except" => array("create", "edit"), "parameters" => array("manufacturer" => "manufacturer_id"))); Route::group(array("prefix" => "models"), function () { Route::get("selectlist", array(Api\AssetModelsController::class, "selectlist"))->name("api.models.selectlist"); Route::get("assets", array(Api\AssetModelsController::class, "assets"))->name("api.models.assets"); Route::post("{id}/restore", array(Api\AssetModelsController::class, "restore"))->name("api.models.restore"); }); Route::resource("models", Api\AssetModelsController::class, array("names" => array("index" => "api.models.index", "show" => "api.models.show", "update" => "api.models.update", "store" => "api.models.store", "destroy" => "api.models.destroy"), "except" => array("create", "edit"), "parameters" => array("model" => "model_id"))); Route::group(array("middleware" => array("auth", "authorize:superuser"), "prefix" => "settings"), function () { Route::get("ldaptest", array(Api\SettingsController::class, "ldaptest"))->name("api.settings.ldaptest"); Route::post("purge_barcodes", array(Api\SettingsController::class, "purgeBarcodes"))->name("api.settings.purgebarcodes"); Route::get("login-attempts", array(Api\SettingsController::class, "showLoginAttempts"))->name("api.settings.login_attempts"); Route::post("ldaptestlogin", array(Api\SettingsController::class, "ldaptestlogin"))->name("api.settings.ldaptestlogin"); Route::post("slacktest", array(Api\SettingsController::class, "slacktest"))->name("api.settings.slacktest"); Route::post("mailtest", array(Api\SettingsController::class, "ajaxTestEmail"))->name("api.settings.mailtest"); Route::get("backups", array(Api\SettingsController::class, "listBackups"))->name("api.settings.backups.index"); Route::get("backups/download/latest", array(Api\SettingsController::class, "downloadLatestBackup"))->name("api.settings.backups.latest"); Route::get("backups/download/{file}", array(Api\SettingsController::class, "downloadBackup"))->name("api.settings.backups.download"); }); Route::resource("settings", Api\SettingsController::class, array("names" => array("index" => "api.settings.index", "show" => "api.settings.show", "update" => "api.settings.update", "store" => "api.settings.store", "destroy" => "api.settings.destroy"), "except" => array("create", "edit"), "parameters" => array("setting" => "setting_id"))); Route::group(array("prefix" => "statuslabels"), function () { Route::get("selectlist", array(Api\StatuslabelsController::class, "selectlist"))->name("api.statuslabels.selectlist"); Route::get("assets/name", array(Api\StatuslabelsController::class, "getAssetCountByStatuslabel"))->name("api.statuslabels.assets.byname"); Route::get("assets/type", array(Api\StatuslabelsController::class, "getAssetCountByMetaStatus"))->name("api.statuslabels.assets.bytype"); Route::get("{id}/assetlist", array(Api\StatuslabelsController::class, "assets"))->name("api.statuslabels.assets"); Route::get("{statuslabel}/deployable", array(Api\StatuslabelsController::class, "checkIfDeployable"))->name("api.statuslabels.deployable"); Route::get("selectlist", array(Api\StatuslabelsController::class, "selectlist"))->name("api.statuslabels.selectlist"); }); Route::resource("statuslabels", Api\StatuslabelsController::class, array("names" => array("index" => "api.statuslabels.index", "show" => "api.statuslabels.show", "update" => "api.statuslabels.update", "store" => "api.statuslabels.store", "destroy" => "api.statuslabels.destroy"), "except" => array("create", "edit"), "parameters" => array("statuslabel" => "statuslabel_id"))); Route::group(array("prefix" => "suppliers"), function () { Route::get("selectlist", array(Api\SuppliersController::class, "selectlist"))->name("api.suppliers.selectlist"); }); Route::resource("suppliers", Api\SuppliersController::class, array("names" => array("index" => "api.suppliers.index", "show" => "api.suppliers.show", "update" => "api.suppliers.update", "store" => "api.suppliers.store", "destroy" => "api.suppliers.destroy"), "except" => array("create", "edit"), "parameters" => array("supplier" => "supplier_id"))); Route::group(array("prefix" => "users"), function () { Route::get("selectlist", array(Api\UsersController::class, "selectlist"))->name("api.users.selectlist"); Route::post("two_factor_reset", array(Api\UsersController::class, "postTwoFactorReset"))->name("api.users.two_factor_reset"); Route::get("me", array(Api\UsersController::class, "getCurrentUserInfo"))->name("api.users.me"); Route::get("list/{status?}", array(Api\UsersController::class, "getDatatable"))->name("api.users.list"); Route::get("{user}/assets", array(Api\UsersController::class, "assets"))->name("api.users.assetlist"); Route::post("{user}/email", array(Api\UsersController::class, "emailAssetList"))->name("api.users.email_assets"); Route::get("{user}/accessories", array(Api\UsersController::class, "accessories"))->name("api.users.accessorieslist"); Route::get("{user}/licenses", array(Api\UsersController::class, "licenses"))->name("api.users.licenselist"); Route::post("{user}/upload", array(Api\UsersController::class, "postUpload"))->name("api.users.uploads"); Route::post("{user}/restore", array(Api\UsersController::class, "restore"))->name("api.users.restore"); }); Route::resource("users", Api\UsersController::class, array("names" => array("index" => "api.users.index", "show" => "api.users.show", "update" => "api.users.update", "store" => "api.users.store", "destroy" => "api.users.destroy"), "except" => array("create", "edit"), "parameters" => array("user" => "user_id"))); Route::resource("kits", Api\PredefinedKitsController::class, array("names" => array("index" => "api.kits.index", "show" => "api.kits.show", "update" => "api.kits.update", "store" => "api.kits.store", "destroy" => "api.kits.destroy"), "except" => array("create", "edit"), "parameters" => array("kit" => "kit_id"))); Route::group(array("prefix" => "kits/{kit_id}"), function () { Route::get("licenses", array(Api\PredefinedKitsController::class, "indexLicenses"))->name("api.kits.licenses.index"); Route::post("licenses", array(Api\PredefinedKitsController::class, "storeLicense"))->name("api.kits.licenses.store"); Route::put("licenses/{license_id}", array(Api\PredefinedKitsController::class, "updateLicense"))->name("api.kits.licenses.update"); Route::delete("licenses/{license_id}", array(Api\PredefinedKitsController::class, "detachLicense"))->name("api.kits.licenses.destroy"); Route::get("models", array(Api\PredefinedKitsController::class, "indexModels"))->name("api.kits.models.index"); Route::post("models", array(Api\PredefinedKitsController::class, "storeModel"))->name("api.kits.models.store"); Route::put("models/{model_id}", array(Api\PredefinedKitsController::class, "updateModels"))->name("api.kits.models.update"); Route::delete("models/{model_id}", array(Api\PredefinedKitsController::class, "detachModels"))->name("api.kits.models.destroy"); Route::get("accessories", array(Api\PredefinedKitsController::class, "indexAccessories"))->name("api.kits.accessories.index"); Route::post("accessories", array(Api\PredefinedKitsController::class, "storeAccessory"))->name("api.kits.accessories.store"); Route::put("accessories/{accessory_id}", array(Api\PredefinedKitsController::class, "updateAccessory"))->name("api.kits.accessories.update"); Route::delete("accessories/{accessory_id}", array(Api\PredefinedKitsController::class, "detachAccessory"))->name("api.kits.accessories.destroy"); Route::get("consumables", array(Api\PredefinedKitsController::class, "indexConsumables"))->name("api.kits.consumables.index"); Route::post("consumables", array(Api\PredefinedKitsController::class, "storeConsumable"))->name("api.kits.consumables.store"); Route::put("consumables/{consumable_id}", array(Api\PredefinedKitsController::class, "updateConsumable"))->name("api.kits.consumables.update"); Route::delete("consumables/{consumable_id}", array(Api\PredefinedKitsController::class, "detachConsumable"))->name("api.kits.consumables.destroy"); }); Route::group(array("prefix" => "reports"), function () { Route::get("activity", array(Api\ReportsController::class, "index"))->name("api.activity.index"); }); Route::get("/version", function () { return response()->json(array("version" => config("version.app_version")), 200); }); Route::fallback(function () { return response()->json(array("status" => "error", "message" => "404 endpoint not found. Please check the API reference at https://snipe-it.readme.io/reference to find a valid API endpoint.", "payload" => null), 404); }); }); ?>
Did this file decode correctly?
Original Code
<?php
use App\Http\Controllers\Api; use Illuminate\Support\Facades\Route; Route::group(array("\160\162\x65\146\151\170" => "\x76\x31", "\155\x69\144\144\154\145\167\x61\162\x65" => array("\141\160\151", "\x74\150\x72\x6f\x74\x74\154\x65\72\x61\160\x69")), function () { Route::get("\57", function () { return response()->json(array("\x73\x74\141\164\x75\x73" => "\x65\x72\x72\x6f\162", "\x6d\145\163\x73\141\147\x65" => "\64\x30\x34\x20\x65\156\144\160\157\151\x6e\x74\40\156\157\x74\40\x66\157\x75\x6e\x64\56\x20\x54\x68\151\163\x20\x69\x73\40\x74\150\145\40\x62\141\x73\x65\x20\125\x52\x4c\x20\146\x6f\x72\40\164\150\145\x20\101\x50\111\40\x61\156\x64\x20\144\157\x65\x73\x20\156\157\x74\x20\x72\145\x74\x75\162\156\40\141\156\171\x74\x68\x69\156\x67\40\151\x74\163\145\x6c\146\56\x20\120\x6c\x65\x61\x73\x65\40\x63\x68\x65\x63\153\40\164\150\x65\x20\101\x50\111\40\x72\x65\x66\145\162\x65\x6e\143\145\40\141\164\x20\150\x74\x74\x70\x73\72\57\x2f\163\x6e\x69\160\145\x2d\x69\x74\56\162\145\141\144\155\x65\x2e\x69\157\x2f\162\x65\x66\x65\x72\145\156\143\x65\40\164\157\x20\x66\x69\156\144\x20\x61\40\x76\x61\x6c\x69\144\40\x41\x50\x49\40\x65\x6e\x64\x70\157\151\156\x74\56", "\x70\141\171\x6c\157\x61\144" => null), 404); }); Route::group(array("\160\x72\x65\x66\x69\170" => "\141\x63\x63\157\x75\x6e\164"), function () { Route::get("\162\145\161\165\x65\163\x74\163", array(Api\ProfileController::class, "\x72\x65\161\165\x65\x73\x74\x65\144\101\163\x73\x65\x74\163"))->name("\x61\x70\151\56\141\x73\163\145\164\x73\x2e\x72\x65\161\165\145\163\164\x65\144"); Route::get("\x72\145\x71\165\x65\163\164\141\x62\x6c\145\57\150\141\162\x64\167\141\x72\145", array(Api\AssetsController::class, "\x72\x65\161\165\145\x73\164\141\x62\x6c\145"))->name("\x61\x70\x69\56\141\x73\x73\145\164\x73\56\x72\x65\161\165\145\163\x74\141\x62\154\145"); Route::post("\x70\145\x72\x73\x6f\156\141\x6c\x2d\141\x63\x63\x65\x73\x73\x2d\x74\157\x6b\x65\x6e\163", array(Api\ProfileController::class, "\143\x72\145\x61\164\145\101\160\151\124\157\x6b\x65\156"))->name("\x61\x70\x69\x2e\x70\x65\x72\163\x6f\156\141\x6c\x2d\x61\x63\143\x65\x73\163\x2d\x74\157\153\x65\156\x2e\x63\162\145\x61\164\x65"); Route::get("\160\145\x72\x73\157\x6e\x61\154\x2d\x61\x63\143\145\x73\x73\x2d\x74\157\x6b\x65\x6e\163", array(Api\ProfileController::class, "\163\150\x6f\x77\101\x70\151\124\157\x6b\x65\x6e\163"))->name("\x61\160\x69\x2e\x70\x65\x72\163\157\x6e\141\154\55\x61\x63\143\145\163\x73\x2d\164\x6f\x6b\x65\x6e\56\151\156\x64\145\x78"); Route::delete("\160\x65\162\163\157\156\x61\x6c\55\x61\x63\143\x65\163\163\55\164\x6f\x6b\145\x6e\163\57\x7b\x74\157\x6b\x65\156\111\x64\175", array(Api\ProfileController::class, "\x64\145\154\x65\164\145\101\160\x69\x54\157\x6b\145\156"))->name("\x61\160\151\56\160\145\x72\x73\157\x6e\x61\154\55\x61\143\143\145\163\x73\x2d\x74\157\x6b\x65\156\56\144\145\x6c\x65\x74\145"); }); Route::group(array("\x70\162\145\x66\151\x78" => "\x61\x63\x63\145\x73\163\x6f\x72\x69\x65\163"), function () { Route::get("\x7b\x61\143\x63\x65\163\163\157\162\x79\x7d\57\x63\x68\145\143\153\145\x64\157\165\164", array(Api\AccessoriesController::class, "\x63\x68\x65\143\153\145\x64\x6f\165\x74"))->name("\141\x70\151\56\x61\x63\x63\145\163\163\157\162\151\x65\x73\56\143\x68\x65\143\x6b\145\144\157\x75\164"); Route::post("\x7b\141\143\143\x65\x73\163\157\162\x79\x7d\57\x63\150\x65\x63\153\x6f\x75\x74", array(Api\AccessoriesController::class, "\143\x68\x65\x63\153\157\x75\164"))->name("\141\160\x69\x2e\x61\143\x63\x65\163\x73\157\x72\x69\145\163\x2e\x63\x68\x65\x63\x6b\157\x75\164"); Route::post("\173\141\143\x63\x65\x73\x73\157\x72\x79\x7d\x2f\x63\x68\145\x63\x6b\x69\x6e", array(Api\AccessoriesController::class, "\143\x68\145\x63\x6b\x69\156"))->name("\x61\x70\x69\x2e\141\x63\143\145\x73\163\157\x72\151\145\x73\x2e\x63\150\x65\x63\153\151\x6e"); Route::get("\x73\x65\154\x65\143\x74\154\x69\163\x74", array(Api\AccessoriesController::class, "\x73\145\x6c\x65\143\x74\x6c\x69\x73\164"))->name("\x61\x70\151\x2e\x61\143\143\x65\163\163\x6f\x72\x69\x65\x73\x2e\163\x65\154\x65\143\164\x6c\x69\163\164"); }); Route::resource("\141\x63\143\x65\163\163\x6f\x72\151\x65\163", Api\AccessoriesController::class, array("\x6e\141\x6d\145\x73" => array("\151\x6e\x64\145\170" => "\141\160\151\56\141\x63\x63\x65\x73\x73\157\162\151\145\163\56\x69\x6e\x64\x65\x78", "\x73\x68\157\x77" => "\x61\160\151\x2e\x61\x63\143\145\163\x73\157\162\151\x65\163\x2e\x73\x68\157\167", "\165\160\144\x61\x74\x65" => "\141\x70\151\x2e\x61\x63\143\145\163\163\x6f\x72\151\145\x73\x2e\x75\x70\144\x61\164\x65", "\x73\164\x6f\162\x65" => "\141\160\x69\x2e\x61\143\143\x65\x73\163\157\162\151\x65\x73\56\163\x74\x6f\x72\145", "\x64\145\x73\164\162\x6f\171" => "\141\x70\x69\x2e\141\143\143\145\163\x73\157\162\151\145\x73\x2e\x64\x65\x73\x74\x72\157\x79"), "\x65\x78\143\x65\x70\164" => array("\x63\162\x65\141\x74\x65", "\x65\144\151\x74"), "\x70\141\x72\x61\x6d\x65\164\x65\162\163" => array("\x61\x63\143\x65\x73\x73\x6f\162\x79" => "\141\x63\143\x65\x73\x73\157\x72\x79\137\151\144"))); Route::group(array("\160\162\145\x66\x69\170" => "\143\141\x74\145\147\x6f\x72\151\x65\x73"), function () { Route::get("\173\151\164\145\x6d\x5f\x74\171\x70\145\x7d\x2f\163\145\154\x65\x63\x74\x6c\151\x73\x74", array(Api\CategoriesController::class, "\x73\145\154\x65\143\x74\154\151\x73\x74"))->name("\141\160\151\56\143\x61\x74\145\x67\157\162\x69\x65\163\56\x73\x65\154\145\143\164\x6c\x69\x73\164"); }); Route::resource("\x63\x61\164\x65\147\157\x72\x69\x65\x73", Api\CategoriesController::class, array("\156\x61\155\145\x73" => array("\x69\156\144\x65\170" => "\x61\160\x69\56\143\x61\x74\145\147\x6f\x72\151\x65\x73\x2e\x69\x6e\144\x65\170", "\x73\x68\x6f\x77" => "\x61\160\x69\56\x63\141\x74\145\147\x6f\162\151\x65\163\x2e\163\x68\157\x77", "\x75\160\x64\141\164\x65" => "\141\x70\151\56\x63\x61\164\145\147\x6f\162\x69\145\163\x2e\165\160\x64\x61\x74\145", "\x73\x74\x6f\x72\x65" => "\141\x70\x69\x2e\x63\x61\x74\145\x67\x6f\x72\x69\145\x73\56\x73\164\x6f\x72\145", "\144\x65\163\164\162\x6f\x79" => "\141\x70\151\x2e\x63\141\164\145\x67\157\x72\151\x65\163\x2e\144\145\163\x74\162\157\171"), "\145\170\x63\x65\x70\164" => array("\143\x72\145\x61\x74\x65", "\145\x64\x69\164"), "\x70\141\x72\141\155\145\x74\145\162\163" => array("\x63\x61\x74\145\147\157\162\171" => "\143\141\164\x65\x67\157\x72\171\137\x69\144"))); Route::group(array("\x70\162\145\146\151\x78" => "\x63\157\x6d\x70\x61\156\x69\145\x73"), function () { Route::get("\163\145\x6c\145\143\164\x6c\x69\163\x74", array(Api\CompaniesController::class, "\x73\x65\x6c\145\x63\x74\154\x69\163\x74"))->name("\141\160\x69\56\143\157\x6d\160\x61\156\151\145\163\56\163\145\154\145\x63\164\x6c\151\163\x74"); }); Route::resource("\x63\x6f\x6d\160\141\156\151\x65\163", Api\CompaniesController::class, array("\x6e\141\155\145\x73" => array("\x69\156\144\145\170" => "\x61\x70\x69\x2e\x63\x6f\155\160\x61\156\151\x65\x73\56\151\156\144\145\x78", "\x73\x68\x6f\167" => "\141\160\151\56\x63\157\x6d\160\x61\x6e\151\145\163\x2e\x73\x68\x6f\x77", "\165\160\144\141\164\145" => "\141\160\x69\x2e\143\157\155\x70\141\156\x69\145\163\x2e\x75\x70\x64\x61\164\x65", "\163\x74\157\162\145" => "\x61\x70\x69\56\143\x6f\x6d\160\x61\x6e\151\x65\163\56\x73\x74\157\x72\x65", "\144\145\x73\164\162\157\x79" => "\x61\x70\x69\x2e\x63\157\155\x70\141\156\151\x65\163\56\x64\x65\163\x74\162\157\171"), "\145\x78\143\145\x70\x74" => array("\143\162\x65\141\x74\x65", "\x65\x64\151\164"), "\x70\x61\162\x61\x6d\x65\164\145\162\163" => array("\143\x6f\155\160\141\156\x79" => "\143\157\155\160\x61\x6e\171\x5f\x69\x64"))); Route::group(array("\160\162\x65\x66\x69\x78" => "\x64\145\160\141\x72\x74\155\x65\156\x74\163"), function () { Route::get("\x73\145\154\x65\143\164\154\151\x73\164", array(Api\DepartmentsController::class, "\163\x65\x6c\x65\143\164\154\x69\x73\x74"))->name("\141\160\151\x2e\144\145\x70\141\x72\164\x6d\x65\x6e\x74\163\x2e\163\x65\154\145\x63\x74\x6c\151\163\164"); }); Route::resource("\144\145\x70\x61\x72\164\155\x65\156\164\163", Api\DepartmentsController::class, array("\156\141\155\x65\x73" => array("\151\x6e\144\145\170" => "\x61\x70\x69\x2e\x64\x65\x70\x61\x72\x74\155\x65\156\164\163\x2e\x69\156\144\x65\x78", "\163\150\157\167" => "\x61\x70\x69\56\x64\145\160\x61\162\164\155\x65\156\x74\163\x2e\163\x68\x6f\167", "\x75\x70\x64\141\x74\x65" => "\141\160\151\x2e\x64\x65\x70\141\x72\x74\155\x65\156\x74\x73\56\x75\x70\144\x61\164\145", "\163\x74\157\x72\x65" => "\141\160\x69\56\x64\x65\x70\141\x72\164\x6d\145\x6e\x74\163\56\x73\x74\x6f\162\x65", "\144\145\163\x74\162\157\171" => "\141\x70\x69\56\144\145\160\141\162\x74\x6d\x65\x6e\164\x73\56\144\x65\x73\164\x72\x6f\x79"), "\x65\x78\143\145\x70\x74" => array("\x63\162\x65\141\x74\x65", "\x65\x64\x69\x74"), "\160\x61\x72\141\155\145\164\x65\x72\163" => array("\144\x65\x70\x61\x72\164\x6d\145\156\x74" => "\x64\145\x70\141\x72\x74\x6d\145\156\x74\137\151\144"))); Route::group(array("\x70\162\x65\x66\151\x78" => "\x63\x6f\x6d\x70\157\156\145\156\x74\163"), function () { Route::get("\163\x65\154\x65\x63\164\x6c\x69\x73\x74", array(Api\ComponentsController::class, "\x73\145\154\x65\x63\x74\154\151\163\x74"))->name("\x61\160\151\56\x63\x6f\x6d\160\x6f\x6e\x65\156\x74\163\56\x73\x65\154\145\x63\164\154\151\163\x74"); Route::get("\x7b\143\x6f\155\x70\x6f\156\145\x6e\164\x7d\x2f\141\163\163\x65\x74\163", array(Api\ComponentsController::class, "\147\145\164\101\163\x73\x65\164\x73"))->name("\x61\x70\151\56\143\157\x6d\x70\x6f\156\x65\x6e\x74\x73\56\141\163\163\x65\164\163"); }); Route::post("\x63\157\x6d\160\x6f\156\145\156\164\x73\x2f\x7b\x69\144\175\57\x63\150\x65\143\x6b\x69\156", array(Api\ComponentsController::class, "\x63\150\x65\x63\153\151\x6e"))->name("\x61\x70\151\x2e\143\157\x6d\x70\157\156\x65\156\164\163\56\x63\150\x65\143\153\151\x6e"); Route::post("\x63\x6f\155\160\x6f\156\145\156\164\163\x2f\173\x69\144\175\x2f\143\x68\145\x63\x6b\157\165\164", array(Api\ComponentsController::class, "\143\x68\x65\143\153\x6f\165\x74"))->name("\x61\x70\151\x2e\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\164\163\x2e\143\x68\x65\143\153\x6f\x75\x74"); Route::resource("\143\x6f\x6d\x70\x6f\x6e\145\x6e\164\x73", Api\ComponentsController::class, array("\156\x61\x6d\x65\163" => array("\151\156\x64\x65\x78" => "\x61\160\x69\x2e\x63\157\x6d\x70\x6f\x6e\145\156\164\x73\x2e\151\x6e\x64\x65\170", "\163\x68\157\167" => "\141\x70\x69\56\143\157\x6d\x70\x6f\156\145\x6e\164\x73\x2e\163\150\x6f\167", "\165\160\x64\141\164\x65" => "\141\160\x69\56\x63\157\155\160\157\x6e\x65\x6e\164\x73\x2e\x75\x70\x64\141\x74\145", "\x73\164\x6f\x72\145" => "\141\160\x69\x2e\143\x6f\x6d\160\x6f\156\x65\x6e\164\x73\56\163\x74\x6f\x72\145", "\144\145\163\164\x72\x6f\x79" => "\x61\160\151\56\x63\x6f\155\x70\157\156\145\x6e\164\163\56\x64\x65\163\x74\x72\x6f\x79"), "\x65\x78\x63\x65\x70\x74" => array("\143\x72\145\141\164\145", "\145\144\151\x74"), "\160\x61\x72\x61\155\145\164\x65\x72\163" => array("\x63\x6f\x6d\x70\x6f\x6e\145\156\x74" => "\143\157\155\x70\157\156\145\156\x74\137\151\144"))); Route::group(array("\160\162\145\x66\151\x78" => "\143\x6f\x6e\x73\165\155\x61\142\154\145\x73"), function () { Route::get("\163\145\x6c\x65\143\x74\154\151\x73\164", array(Api\ConsumablesController::class, "\163\145\x6c\x65\x63\x74\x6c\x69\163\x74"))->name("\141\160\151\56\143\x6f\156\x73\x75\155\x61\142\154\x65\x73\56\163\x65\154\x65\x63\164\154\151\163\x74"); Route::get("\x7b\x69\144\x7d\57\x75\163\145\162\163", array(Api\ConsumablesController::class, "\x67\145\164\x44\141\164\141\x56\151\x65\167"))->name("\x61\x70\x69\x2e\x63\157\x6e\163\165\155\141\x62\x6c\145\x73\x2e\163\150\157\x77\x2e\165\163\145\x72\163"); Route::post("\x7b\x63\x6f\x6e\163\x75\x6d\x61\142\x6c\x65\x7d\57\143\x68\x65\143\153\x6f\x75\x74", array(Api\ConsumablesController::class, "\x63\150\x65\x63\153\x6f\x75\164"))->name("\141\160\x69\56\143\x6f\156\163\165\x6d\x61\142\154\145\x73\x2e\x63\x68\x65\143\153\157\x75\x74"); }); Route::resource("\x63\x6f\x6e\x73\165\155\141\142\x6c\x65\163", Api\ConsumablesController::class, array("\x6e\141\155\x65\x73" => array("\x69\x6e\x64\145\170" => "\141\x70\x69\x2e\143\x6f\156\163\165\155\141\x62\x6c\145\163\x2e\x69\x6e\144\145\x78", "\163\x68\157\167" => "\x61\160\151\56\143\157\156\x73\165\x6d\141\x62\x6c\145\163\56\x73\150\x6f\x77", "\165\x70\x64\x61\164\145" => "\141\160\x69\x2e\143\157\156\x73\165\x6d\141\142\x6c\145\x73\56\x75\160\144\141\164\145", "\163\x74\157\162\145" => "\x61\160\151\x2e\x63\x6f\156\x73\x75\x6d\141\142\x6c\x65\163\x2e\x73\164\x6f\x72\x65", "\x64\x65\x73\164\162\157\171" => "\x61\160\151\56\143\x6f\156\163\165\155\x61\142\x6c\145\x73\56\x64\145\163\164\x72\157\x79"), "\145\170\143\x65\160\x74" => array("\x63\162\145\141\x74\x65", "\145\144\x69\x74"), "\160\141\162\141\155\145\x74\x65\x72\x73" => array("\x63\x6f\156\x73\165\155\141\x62\x6c\x65" => "\x63\x6f\x6e\x73\x75\x6d\x61\x62\154\145\x5f\151\x64"))); Route::resource("\x64\x65\x70\162\145\143\x69\141\x74\x69\157\156\163", Api\DepreciationsController::class, array("\156\x61\x6d\145\163" => array("\151\156\144\145\x78" => "\141\160\x69\x2e\144\145\160\x72\145\143\151\141\164\151\157\x6e\x73\x2e\x69\x6e\x64\x65\x78", "\x73\150\x6f\x77" => "\141\x70\151\56\x64\x65\160\x72\x65\x63\151\x61\x74\151\x6f\156\163\56\163\x68\157\x77", "\x75\160\x64\x61\x74\145" => "\141\160\x69\56\144\x65\160\x72\145\x63\x69\x61\164\x69\157\x6e\x73\x2e\x75\160\x64\141\x74\145", "\x73\164\157\x72\x65" => "\141\160\151\x2e\144\145\160\x72\145\143\x69\x61\164\x69\x6f\156\x73\56\x73\164\157\162\x65", "\x64\x65\163\x74\x72\157\171" => "\x61\x70\x69\56\144\x65\160\x72\x65\143\x69\141\164\x69\157\x6e\163\x2e\x64\x65\x73\x74\x72\157\x79"), "\145\x78\143\145\x70\164" => array("\x63\x72\145\141\x74\145", "\145\x64\x69\164"), "\x70\141\162\141\155\x65\x74\x65\x72\x73" => array("\x64\x65\160\x72\x65\x63\151\x61\x74\151\x6f\156\163" => "\144\145\x70\x72\145\x63\x69\141\164\151\x6f\x6e\x5f\151\144"))); Route::get("\x72\x65\160\157\x72\x74\x73\x2f\x64\145\160\x72\145\143\151\x61\164\x69\157\x6e", array(Api\AssetsController::class, "\x69\156\144\145\170"))->name("\x61\x70\x69\56\x64\x65\160\x72\145\x63\x69\x61\164\x69\157\x6e\55\162\145\160\157\x72\x74\56\151\x6e\x64\x65\x78"); Route::group(array("\160\x72\x65\x66\151\170" => "\x66\151\145\x6c\144\x73"), function () { Route::post("\x66\151\145\154\x64\x73\145\x74\163\x2f\x7b\x69\144\x7d\57\x6f\x72\x64\x65\162", array(Api\CustomFieldsController::class, "\x70\x6f\x73\x74\x52\x65\x6f\x72\144\145\162"))->name("\141\160\151\56\143\165\x73\164\x6f\x6d\146\151\145\x6c\x64\163\56\x6f\162\144\x65\x72"); Route::post("\x7b\146\151\145\154\144\175\57\x61\x73\x73\x6f\x63\151\x61\164\x65", array(Api\CustomFieldsController::class, "\141\163\163\x6f\x63\151\x61\x74\145"))->name("\141\x70\151\x2e\x63\165\x73\164\157\x6d\x66\151\x65\x6c\144\163\56\141\163\x73\x6f\143\x69\141\164\145"); Route::post("\x7b\146\x69\145\154\144\x7d\57\144\151\163\141\163\x73\157\x63\x69\x61\164\145", array(Api\CustomFieldsController::class, "\144\151\163\x61\x73\x73\x6f\x63\151\141\164\145"))->name("\141\x70\x69\x2e\x63\165\x73\x74\157\x6d\146\151\145\x6c\x64\x73\56\x64\151\x73\141\163\x73\157\143\x69\141\164\x65"); }); Route::resource("\146\x69\145\154\144\x73", Api\CustomFieldsController::class, array("\x6e\x61\x6d\x65\163" => array("\151\x6e\144\x65\170" => "\x61\x70\151\56\x63\x75\x73\164\x6f\155\x66\151\x65\154\x64\163\x2e\x69\156\144\x65\x78", "\x73\150\x6f\167" => "\141\x70\x69\x2e\143\x75\163\164\x6f\x6d\146\151\145\154\x64\x73\x2e\163\150\157\x77", "\x75\160\144\141\x74\x65" => "\141\x70\151\x2e\143\x75\163\164\157\x6d\146\x69\145\x6c\x64\163\56\x75\160\x64\141\x74\145", "\163\x74\x6f\162\145" => "\141\160\x69\56\143\x75\163\x74\157\155\146\151\145\154\x64\163\56\163\164\157\x72\145", "\x64\x65\x73\164\162\x6f\171" => "\x61\160\x69\56\x63\x75\x73\164\157\155\x66\151\145\154\144\163\x2e\x64\x65\163\x74\x72\x6f\x79"), "\x65\x78\143\145\160\x74" => array("\x63\x72\x65\141\164\x65", "\145\x64\x69\164"), "\x70\x61\162\x61\155\145\x74\145\162\163" => array("\146\x69\145\x6c\x64" => "\146\151\x65\154\144\137\x69\144"))); Route::group(array("\160\x72\145\x66\x69\170" => "\146\x69\145\154\144\163\145\164\163"), function () { Route::post("\173\x66\151\x65\x6c\x64\163\x65\x74\175\x2f\x66\x69\145\x6c\144\x73", array(Api\CustomFieldsetsController::class, "\146\151\145\154\144\163"))->name("\141\x70\151\56\146\151\145\154\144\x73\145\164\163\56\x66\x69\x65\x6c\x64\163"); Route::post("\x7b\x66\151\x65\154\x64\x73\145\164\x7d\57\146\151\145\154\x64\163\x2f\173\x6d\157\144\145\154\x7d", array(Api\CustomFieldsetsController::class, "\x66\151\x65\154\144\x73\x57\151\164\150\104\145\x66\x61\x75\154\164\x56\x61\154\165\x65\x73"))->name("\141\160\151\56\x66\151\x65\154\x64\x73\x65\x74\x73\56\146\151\145\x6c\x64\163\x2d\167\x69\164\x68\x2d\x64\x65\x66\141\165\x6c\164\55\166\141\154\165\x65"); }); Route::resource("\146\x69\x65\154\x64\163\145\x74\x73", Api\CustomFieldsetsController::class, array("\x6e\x61\155\x65\x73" => array("\151\156\144\x65\x78" => "\141\160\x69\56\146\151\x65\x6c\144\x73\145\x74\163\x2e\x69\156\x64\145\170", "\163\150\x6f\167" => "\141\x70\151\x2e\146\x69\145\154\x64\x73\145\164\x73\56\163\x68\x6f\x77", "\165\x70\x64\141\x74\x65" => "\141\x70\151\x2e\x66\151\145\x6c\x64\163\145\x74\163\x2e\165\160\144\x61\x74\145", "\x73\164\x6f\x72\x65" => "\x61\160\151\56\x66\x69\x65\154\144\x73\145\x74\163\56\x73\x74\157\162\x65", "\144\x65\x73\164\162\157\171" => "\141\x70\x69\56\146\151\x65\154\144\x73\145\x74\163\x2e\144\x65\163\x74\162\157\x79"), "\145\x78\x63\145\x70\164" => array("\143\162\145\x61\164\145", "\x65\x64\151\x74"), "\160\x61\162\141\x6d\x65\164\145\162\x73" => array("\146\x69\145\x6c\x64\163\x65\x74" => "\146\x69\145\154\x64\163\145\x74\137\x69\x64"))); Route::resource("\147\162\157\x75\x70\x73", Api\GroupsController::class, array("\x6e\141\x6d\x65\163" => array("\151\156\x64\145\170" => "\x61\160\151\x2e\x67\162\x6f\165\160\x73\56\x69\x6e\x64\145\170", "\x73\x68\x6f\x77" => "\141\x70\151\x2e\x67\x72\x6f\x75\160\x73\56\x73\150\157\x77", "\x75\160\x64\x61\x74\145" => "\x61\160\151\56\147\x72\157\165\x70\x73\x2e\x75\x70\144\141\x74\x65", "\x73\164\x6f\162\x65" => "\141\160\x69\56\147\x72\157\x75\160\163\x2e\163\x74\157\162\x65", "\144\x65\x73\164\162\157\171" => "\141\x70\151\56\147\162\157\165\x70\163\x2e\144\145\163\x74\x72\x6f\171"), "\x65\x78\143\x65\160\164" => array("\143\x72\x65\141\x74\x65", "\x65\144\151\164"), "\160\x61\162\141\155\x65\164\145\162\x73" => array("\x67\162\157\x75\160" => "\x67\162\x6f\165\160\x5f\x69\x64"))); Route::group(array("\x70\162\x65\x66\x69\170" => "\x68\141\162\x64\x77\x61\x72\x65"), function () { Route::get("\163\x65\x6c\145\x63\164\x6c\151\x73\x74", array(Api\AssetsController::class, "\163\145\154\x65\143\164\x6c\151\163\x74"))->name("\141\x73\163\145\164\163\56\x73\145\x6c\145\x63\164\x6c\x69\163\164"); Route::get("\173\x61\x73\163\x65\164\x5f\151\144\175\x2f\x6c\x69\143\145\156\163\x65\163", array(Api\AssetsController::class, "\x6c\151\143\145\x6e\x73\145\x73"))->name("\141\160\x69\x2e\141\163\x73\145\164\163\x2e\154\x69\x63\x65\x6e\163\x65\154\151\163\164"); Route::get("\x62\171\164\x61\x67\x2f\x7b\164\x61\x67\x7d", array(Api\AssetsController::class, "\x73\150\157\167\x42\171\124\x61\x67"))->name("\141\x73\163\x65\164\163\56\x73\150\x6f\x77\x2e\x62\171\164\141\x67"); Route::get("\x62\x79\164\141\x67\57\x7b\x61\156\x79\x7d", array(Api\AssetsController::class, "\x73\150\157\167\x42\x79\124\141\147"))->name("\x61\x70\x69\x2e\x61\x73\163\x65\164\163\56\163\x68\157\x77\56\x62\171\164\x61\x67")->where("\x61\156\171", "\x2e\52"); Route::post("\x62\171\x74\141\147\x2f\173\x61\156\x79\x7d\57\143\x68\145\x63\153\157\165\x74", array(Api\AssetsController::class, "\x63\150\x65\143\153\157\165\x74\x42\171\x54\x61\x67"))->name("\141\160\x69\56\x61\x73\x73\145\x74\163\x2e\x63\150\x65\143\x6b\157\165\164\x2e\142\x79\x74\x61\147"); Route::post("\142\x79\x74\141\x67\57\x7b\x61\156\x79\175\57\143\150\145\143\x6b\x69\x6e", array(Api\AssetsController::class, "\x63\x68\x65\x63\153\x69\156\142\x79\x74\x61\147"))->name("\x61\160\x69\56\141\x73\x73\x65\x74\x2e\143\x68\145\x63\153\x69\156\142\171\164\x61\147\x50\x61\164\150"); Route::post("\143\x68\x65\143\153\151\x6e\142\x79\x74\141\147", array(Api\AssetsController::class, "\x63\x68\x65\143\x6b\x69\156\x62\171\164\x61\147"))->name("\141\160\151\56\x61\x73\x73\145\164\56\x63\x68\x65\143\153\151\x6e\142\x79\x74\141\x67"); Route::get("\142\171\163\x65\x72\151\x61\154\x2f\173\x61\x6e\171\175", array(Api\AssetsController::class, "\163\x68\157\167\x42\171\123\145\162\151\x61\x6c"))->name("\141\x70\151\56\141\163\163\x65\164\163\56\x73\150\157\167\56\142\171\163\x65\x72\151\141\x6c")->where("\141\156\x79", "\56\x2a"); Route::get("\x61\x75\144\x69\164\57\x7b\x61\x75\144\151\164\175", array(Api\AssetsController::class, "\x69\x6e\144\145\170"))->name("\141\x70\x69\56\x61\x73\x73\145\164\56\x74\157\55\141\165\x64\x69\x74"); Route::post("\x61\165\144\151\x74", array(Api\AssetsController::class, "\141\165\144\x69\164"))->name("\141\x70\151\x2e\x61\163\x73\x65\x74\56\141\165\x64\151\x74"); Route::post("\x7b\151\x64\x7d\57\x63\150\x65\x63\x6b\151\156", array(Api\AssetsController::class, "\143\150\145\143\x6b\151\x6e"))->name("\141\160\x69\x2e\x61\163\x73\145\x74\x2e\x63\x68\x65\143\153\151\156"); Route::post("\x7b\x69\x64\x7d\57\x63\x68\x65\x63\153\157\x75\x74", array(Api\AssetsController::class, "\143\150\x65\143\x6b\x6f\165\164"))->name("\141\x70\x69\56\x61\x73\163\145\164\x2e\143\x68\145\143\153\x6f\x75\x74"); Route::post("\x7b\141\163\163\x65\164\x5f\151\x64\x7d\x2f\x72\145\163\x74\x6f\162\145", array(Api\AssetsController::class, "\162\145\x73\x74\x6f\x72\x65"))->name("\141\160\x69\x2e\141\x73\x73\145\x74\x73\56\162\x65\163\x74\x6f\x72\145"); }); Route::resource("\x68\x61\162\x64\x77\x61\x72\145", Api\AssetsController::class, array("\156\141\x6d\145\163" => array("\151\x6e\144\145\170" => "\x61\x70\x69\x2e\141\163\x73\145\x74\x73\x2e\151\156\144\145\x78", "\x73\x68\157\167" => "\x61\x70\x69\56\x61\163\x73\x65\164\x73\56\x73\x68\157\167", "\x75\160\144\141\x74\x65" => "\x61\x70\151\x2e\141\163\163\x65\164\163\x2e\165\160\144\x61\164\x65", "\163\164\157\x72\145" => "\x61\160\151\x2e\141\163\x73\x65\x74\x73\x2e\163\x74\x6f\162\x65", "\x64\145\x73\164\x72\157\171" => "\141\160\x69\x2e\141\x73\x73\145\164\163\56\x64\145\x73\164\162\157\x79"), "\145\170\143\145\x70\164" => array("\143\162\x65\x61\164\145", "\145\144\x69\164"), "\x70\141\162\x61\155\x65\164\145\162\163" => array("\x61\163\163\x65\x74" => "\141\x73\163\145\x74\137\151\x64"))); Route::resource("\155\x61\x69\x6e\x74\x65\156\x61\156\143\145\163", Api\AssetMaintenancesController::class, array("\156\x61\x6d\145\x73" => array("\151\156\144\x65\x78" => "\x61\160\x69\56\x6d\x61\151\156\x74\x65\156\141\156\x63\x65\163\56\151\156\x64\x65\x78", "\x73\150\157\x77" => "\141\160\x69\x2e\x6d\141\x69\x6e\164\x65\156\141\x6e\143\145\x73\56\163\x68\x6f\x77", "\x75\160\x64\141\164\145" => "\x61\x70\151\x2e\155\141\151\156\164\145\x6e\x61\156\x63\x65\x73\x2e\x75\x70\x64\141\164\x65", "\x73\164\157\162\145" => "\141\x70\151\x2e\x6d\141\x69\156\x74\x65\x6e\x61\x6e\x63\x65\x73\x2e\163\164\157\162\x65", "\144\x65\163\164\162\x6f\x79" => "\x61\x70\x69\56\x6d\x61\x69\156\x74\x65\156\141\x6e\143\145\163\56\144\x65\x73\164\x72\157\x79"), "\145\x78\x63\x65\x70\x74" => array("\143\162\x65\141\164\x65", "\145\x64\151\164"), "\160\141\x72\141\155\145\164\145\162\163" => array("\155\141\151\x6e\164\145\156\x61\x6e\x63\145" => "\155\x61\x69\x6e\x74\x65\156\141\156\143\145\137\151\x64"))); Route::group(array("\160\162\145\x66\151\x78" => "\x69\x6d\x70\157\x72\x74\163"), function () { Route::post("\160\162\x6f\x63\145\x73\x73\x2f\173\151\x6d\x70\157\162\164\x7d", array(Api\ImportController::class, "\x70\162\157\x63\x65\x73\163"))->name("\x61\x70\x69\x2e\x69\x6d\x70\x6f\x72\x74\x73\x2e\151\155\x70\157\x72\x74\106\151\x6c\x65"); }); Route::resource("\x69\155\x70\x6f\x72\164\163", Api\ImportController::class, array("\x6e\141\155\x65\163" => array("\151\x6e\144\145\x78" => "\x61\x70\x69\x2e\x69\x6d\x70\x6f\x72\x74\163\x2e\151\156\x64\x65\170", "\x73\x68\157\x77" => "\141\x70\151\56\151\155\x70\x6f\x72\x74\x73\56\x73\x68\x6f\x77", "\x75\160\144\x61\x74\x65" => "\x61\160\x69\56\151\x6d\x70\157\x72\x74\x73\56\165\160\144\x61\x74\x65", "\x73\164\157\162\145" => "\x61\160\x69\x2e\x69\x6d\160\157\162\x74\x73\x2e\163\x74\157\162\145", "\144\145\163\164\162\157\171" => "\141\x70\151\x2e\x69\155\x70\x6f\162\164\x73\56\x64\x65\163\164\162\x6f\x79"), "\145\x78\143\x65\x70\x74" => array("\143\162\x65\141\164\x65", "\x65\144\x69\x74"), "\x70\x61\x72\141\x6d\145\164\x65\162\x73" => array("\151\x6d\x70\157\x72\164" => "\x69\x6d\160\x6f\x72\164\137\151\x64"))); Route::group(array("\160\162\145\146\x69\x78" => "\x6c\x61\x62\145\x6c\x73"), function () { Route::get("\x7b\x6e\141\155\x65\x7d", array(Api\LabelsController::class, "\x73\150\x6f\167"))->where("\156\141\x6d\x65", "\x2e\52")->name("\141\160\x69\56\154\141\x62\145\x6c\x73\x2e\163\150\157\167"); Route::get('', array(Api\LabelsController::class, "\x69\156\x64\x65\170"))->name("\141\x70\x69\x2e\154\x61\x62\145\154\x73\x2e\151\156\x64\x65\x78"); }); Route::group(array("\160\x72\x65\x66\x69\170" => "\154\x69\x63\145\x6e\163\x65\163"), function () { Route::get("\163\145\154\145\143\x74\154\151\163\164", array(Api\LicensesController::class, "\x73\145\x6c\x65\x63\x74\x6c\x69\163\164"))->name("\141\x70\x69\56\154\151\143\x65\156\x73\145\163\56\x73\145\154\145\143\164\x6c\x69\x73\x74"); }); Route::resource("\154\151\143\x65\156\x73\x65\x73", Api\LicensesController::class, array("\x6e\141\x6d\145\x73" => array("\151\156\144\145\x78" => "\141\160\x69\x2e\x6c\151\143\145\x6e\x73\145\x73\x2e\x69\156\144\145\170", "\163\x68\x6f\167" => "\x61\x70\151\56\154\x69\x63\145\x6e\163\x65\x73\x2e\163\x68\x6f\x77", "\165\160\144\x61\x74\145" => "\141\160\151\56\x6c\x69\143\x65\x6e\x73\145\163\x2e\x75\160\144\x61\x74\x65", "\163\x74\x6f\x72\145" => "\141\160\x69\56\154\151\x63\x65\x6e\x73\145\x73\x2e\x73\164\157\x72\x65", "\144\145\x73\164\162\157\171" => "\x61\x70\x69\x2e\x6c\x69\143\x65\156\x73\x65\x73\56\144\x65\x73\164\162\x6f\x79"), "\145\170\143\145\x70\164" => array("\143\162\145\141\164\x65", "\145\x64\151\x74"), "\160\141\x72\x61\x6d\x65\164\145\x72\163" => array("\154\x69\x63\x65\x6e\x73\145\163" => "\x6c\151\x63\145\156\x73\x65\137\151\x64"))); Route::resource("\x6c\x69\x63\x65\x6e\163\145\x73\x2e\163\145\x61\164\163", Api\LicenseSeatsController::class, array("\156\141\155\x65\163" => array("\x69\156\x64\145\x78" => "\141\160\x69\x2e\154\151\x63\145\x6e\163\x65\163\x2e\x73\x65\141\x74\x73\x2e\x69\x6e\x64\145\170", "\163\150\157\167" => "\x61\x70\151\x2e\x6c\151\x63\x65\156\x73\145\x73\56\x73\x65\x61\x74\x73\x2e\x73\150\x6f\167", "\x75\x70\144\141\164\145" => "\141\160\151\56\154\x69\x63\x65\x6e\163\145\x73\56\163\x65\x61\x74\x73\x2e\165\x70\x64\x61\x74\x65"), "\145\x78\x63\x65\x70\x74" => array("\143\162\x65\141\x74\x65", "\145\144\x69\x74", "\144\x65\163\164\162\x6f\171", "\163\x74\x6f\162\x65"), "\x70\141\x72\141\155\145\x74\145\162\163" => array("\x6c\151\x63\145\156\163\x65\x73\145\x61\x74" => "\x6c\151\x63\145\x6e\163\145\x73\145\x61\x74\x5f\x69\x64"))); Route::group(array("\x70\162\145\x66\x69\x78" => "\x6c\157\143\x61\x74\151\x6f\156\x73"), function () { Route::get("\163\145\x6c\145\x63\164\x6c\x69\163\x74", array(Api\LocationsController::class, "\163\x65\154\x65\143\x74\154\x69\x73\x74"))->name("\141\160\151\x2e\154\x6f\143\x61\164\151\x6f\156\x73\x2e\x73\145\x6c\x65\x63\164\154\151\x73\164"); Route::get("\x7b\x6c\157\143\x61\x74\151\x6f\156\175\57\165\x73\x65\x72\x73", array(Api\LocationsController::class, "\147\x65\x74\104\141\x74\141\x56\151\x65\x77\125\163\x65\162\163"))->name("\141\x70\x69\x2e\x6c\x6f\x63\141\x74\x69\157\x6e\x73\56\x76\x69\x65\167\x75\163\x65\162\163"); Route::get("\x7b\x6c\x6f\143\141\164\151\x6f\156\x7d\x2f\141\x73\x73\145\x74\163", array(Api\LocationsController::class, "\x67\145\164\104\141\x74\x61\126\151\145\x77\x41\x73\x73\145\164\x73"))->name("\x61\160\151\x2e\154\x6f\x63\x61\x74\x69\157\x6e\163\x2e\x76\151\145\167\x61\x73\x73\x65\164\x73"); }); Route::resource("\x6c\157\143\141\x74\x69\x6f\156\x73", Api\LocationsController::class, array("\156\141\155\x65\x73" => array("\x69\x6e\x64\145\x78" => "\141\160\x69\x2e\x6c\157\143\x61\164\x69\157\156\x73\x2e\x69\x6e\144\145\170", "\163\150\x6f\x77" => "\141\x70\151\56\x6c\157\143\x61\x74\x69\x6f\x6e\163\56\x73\150\157\x77", "\165\x70\144\141\x74\145" => "\x61\160\x69\56\154\157\x63\141\x74\x69\x6f\x6e\x73\x2e\165\160\144\141\x74\145", "\x73\x74\157\x72\145" => "\141\x70\x69\x2e\x6c\157\143\x61\x74\151\157\x6e\163\56\x73\164\157\x72\145", "\144\x65\163\164\162\x6f\x79" => "\141\x70\x69\56\154\x6f\143\x61\164\x69\x6f\156\163\x2e\x64\145\163\x74\162\157\171"), "\x65\170\x63\145\160\164" => array("\143\x72\x65\x61\164\x65", "\x65\144\151\164"), "\x70\x61\162\x61\x6d\x65\x74\x65\162\163" => array("\x6c\x6f\x63\x61\x74\151\x6f\x6e" => "\x6c\157\x63\141\x74\151\x6f\156\137\151\x64"))); Route::group(array("\x70\162\x65\146\x69\x78" => "\x6d\x61\x6e\x75\146\x61\143\x74\x75\x72\145\x72\163"), function () { Route::get("\163\x65\154\145\x63\x74\154\x69\163\x74", array(Api\ManufacturersController::class, "\163\x65\x6c\x65\143\x74\154\151\x73\x74"))->name("\x61\160\x69\56\x6d\x61\x6e\165\x66\141\143\164\x75\x72\145\x72\163\56\x73\x65\x6c\x65\143\164\x6c\151\163\x74"); Route::post("\x7b\x69\144\175\x2f\x72\x65\163\x74\x6f\162\145", array(Api\ManufacturersController::class, "\x72\x65\163\164\157\x72\x65"))->name("\141\x70\151\x2e\x6d\x61\156\x75\x66\x61\143\x74\x75\162\x65\x72\163\56\x72\x65\x73\164\157\162\145"); }); Route::resource("\155\x61\x6e\165\x66\141\143\164\165\x72\x65\162\163", Api\ManufacturersController::class, array("\x6e\141\155\145\163" => array("\x69\x6e\x64\x65\170" => "\141\160\151\x2e\155\x61\x6e\165\x66\141\143\164\165\x72\x65\x72\x73\56\151\x6e\144\x65\170", "\163\x68\157\167" => "\x61\x70\151\56\x6d\141\x6e\165\x66\x61\143\164\165\x72\x65\162\x73\56\163\x68\x6f\x77", "\165\x70\144\x61\x74\x65" => "\x61\x70\151\x2e\155\141\156\165\146\141\143\x74\x75\x72\x65\x72\x73\56\165\160\x64\141\x74\145", "\163\x74\157\x72\145" => "\x61\160\151\56\x6d\141\x6e\165\146\x61\143\x74\x75\162\x65\x72\163\56\163\164\x6f\162\145", "\144\x65\x73\164\162\157\171" => "\141\x70\x69\x2e\155\x61\156\165\x66\x61\143\x74\x75\162\x65\x72\163\56\144\145\163\164\x72\157\171"), "\x65\170\x63\x65\160\x74" => array("\143\162\x65\x61\x74\145", "\145\x64\151\164"), "\x70\x61\162\x61\155\x65\x74\145\x72\163" => array("\155\x61\156\x75\x66\141\x63\164\x75\x72\145\x72" => "\x6d\x61\x6e\165\146\141\143\164\165\x72\x65\162\137\x69\144"))); Route::group(array("\x70\x72\x65\146\x69\170" => "\155\x6f\x64\x65\154\163"), function () { Route::get("\163\145\x6c\x65\x63\x74\154\x69\163\164", array(Api\AssetModelsController::class, "\x73\x65\x6c\145\x63\164\x6c\151\163\x74"))->name("\x61\x70\x69\56\155\x6f\x64\145\x6c\163\56\163\145\x6c\145\143\164\x6c\x69\163\x74"); Route::get("\x61\x73\163\145\x74\163", array(Api\AssetModelsController::class, "\141\163\x73\145\164\163"))->name("\141\x70\x69\56\x6d\157\144\x65\x6c\163\56\141\x73\163\x65\x74\x73"); Route::post("\x7b\151\144\x7d\57\x72\x65\163\x74\157\162\x65", array(Api\AssetModelsController::class, "\162\x65\163\x74\157\162\x65"))->name("\x61\x70\x69\56\x6d\x6f\144\x65\x6c\x73\56\162\145\163\164\x6f\162\x65"); }); Route::resource("\x6d\x6f\x64\x65\x6c\x73", Api\AssetModelsController::class, array("\x6e\141\155\145\x73" => array("\151\x6e\144\145\x78" => "\x61\160\151\x2e\x6d\157\144\x65\154\x73\56\x69\x6e\x64\x65\170", "\x73\150\x6f\167" => "\141\160\151\56\x6d\x6f\144\145\154\163\x2e\163\150\157\x77", "\x75\160\x64\x61\x74\x65" => "\x61\x70\151\56\x6d\x6f\x64\145\x6c\x73\x2e\165\x70\x64\x61\164\x65", "\163\164\x6f\x72\145" => "\141\x70\151\x2e\x6d\157\x64\145\154\163\56\163\164\x6f\x72\x65", "\x64\145\163\x74\162\157\x79" => "\x61\x70\151\56\155\x6f\144\145\154\163\x2e\x64\145\163\x74\x72\157\x79"), "\x65\x78\x63\145\x70\164" => array("\x63\162\145\141\164\145", "\145\144\151\164"), "\160\x61\162\x61\155\145\x74\145\x72\163" => array("\155\157\144\x65\x6c" => "\x6d\x6f\144\x65\154\x5f\151\144"))); Route::group(array("\x6d\x69\144\144\x6c\x65\x77\x61\x72\145" => array("\x61\165\x74\150", "\141\165\164\x68\x6f\x72\x69\x7a\145\72\x73\165\160\x65\x72\165\x73\145\x72"), "\160\162\145\x66\151\x78" => "\x73\145\x74\x74\x69\156\147\163"), function () { Route::get("\x6c\144\x61\x70\164\x65\x73\x74", array(Api\SettingsController::class, "\154\144\141\x70\164\145\x73\164"))->name("\x61\x70\151\x2e\x73\145\164\164\x69\156\147\163\x2e\154\x64\141\x70\164\x65\163\164"); Route::post("\160\x75\162\147\145\x5f\142\x61\162\143\x6f\x64\x65\163", array(Api\SettingsController::class, "\160\x75\162\147\145\102\x61\x72\x63\157\x64\145\x73"))->name("\x61\160\151\56\x73\145\x74\x74\x69\156\147\163\56\x70\x75\162\x67\x65\x62\141\x72\143\157\144\145\x73"); Route::get("\154\x6f\147\x69\x6e\x2d\x61\164\x74\x65\155\x70\164\x73", array(Api\SettingsController::class, "\163\x68\x6f\167\114\x6f\x67\151\156\101\164\x74\x65\155\160\x74\163"))->name("\141\x70\151\x2e\x73\145\164\x74\x69\156\x67\x73\56\154\x6f\147\151\x6e\x5f\141\x74\164\x65\155\x70\164\x73"); Route::post("\x6c\x64\141\x70\x74\145\x73\164\154\x6f\x67\151\x6e", array(Api\SettingsController::class, "\x6c\144\141\x70\164\145\163\x74\x6c\157\x67\x69\156"))->name("\141\x70\151\x2e\x73\x65\x74\164\x69\x6e\147\x73\x2e\x6c\x64\x61\160\164\145\x73\164\x6c\157\x67\x69\x6e"); Route::post("\x73\x6c\141\143\x6b\x74\x65\163\x74", array(Api\SettingsController::class, "\x73\154\x61\x63\153\x74\145\x73\164"))->name("\141\x70\151\56\x73\x65\x74\x74\151\x6e\147\x73\56\163\x6c\141\143\x6b\x74\x65\x73\x74"); Route::post("\x6d\141\x69\154\x74\145\x73\x74", array(Api\SettingsController::class, "\141\x6a\x61\170\124\145\163\x74\105\155\x61\151\x6c"))->name("\141\160\151\56\x73\x65\x74\x74\x69\156\x67\163\56\x6d\141\x69\154\x74\x65\163\x74"); Route::get("\142\x61\x63\153\x75\x70\x73", array(Api\SettingsController::class, "\154\x69\163\x74\x42\141\x63\153\x75\x70\163"))->name("\141\160\151\x2e\x73\145\x74\164\151\x6e\x67\x73\x2e\x62\141\143\x6b\165\x70\163\56\151\156\x64\x65\170"); Route::get("\x62\x61\x63\x6b\165\160\x73\x2f\x64\x6f\x77\156\154\157\141\x64\x2f\154\141\164\145\x73\164", array(Api\SettingsController::class, "\144\x6f\x77\156\x6c\x6f\141\144\x4c\x61\164\x65\163\x74\x42\x61\x63\153\165\x70"))->name("\141\160\151\56\x73\x65\164\x74\x69\156\147\x73\x2e\142\x61\143\153\x75\x70\163\x2e\x6c\x61\x74\x65\x73\x74"); Route::get("\142\141\x63\153\x75\160\x73\57\x64\x6f\x77\x6e\154\x6f\141\x64\x2f\173\x66\151\x6c\x65\x7d", array(Api\SettingsController::class, "\x64\x6f\x77\156\x6c\x6f\x61\x64\102\x61\x63\153\165\x70"))->name("\141\160\151\56\163\145\x74\164\x69\156\147\163\x2e\142\141\143\153\165\x70\163\x2e\144\x6f\x77\x6e\x6c\x6f\x61\144"); }); Route::resource("\163\x65\x74\x74\x69\156\x67\163", Api\SettingsController::class, array("\x6e\x61\155\145\163" => array("\x69\x6e\144\x65\170" => "\x61\x70\151\56\x73\x65\x74\x74\x69\x6e\147\163\56\x69\x6e\144\x65\x78", "\x73\x68\157\167" => "\141\160\151\x2e\x73\x65\164\164\x69\x6e\x67\x73\56\163\x68\157\x77", "\165\160\x64\x61\x74\145" => "\141\160\x69\x2e\163\145\164\x74\x69\x6e\x67\x73\56\165\160\x64\x61\164\x65", "\x73\x74\157\162\145" => "\x61\160\151\56\163\x65\x74\x74\x69\156\147\x73\x2e\163\x74\x6f\162\145", "\144\145\x73\x74\x72\x6f\171" => "\141\x70\x69\56\163\145\x74\164\x69\156\x67\163\x2e\144\145\163\164\162\x6f\x79"), "\x65\x78\143\145\x70\x74" => array("\x63\162\145\141\x74\145", "\145\144\x69\164"), "\x70\141\162\x61\155\x65\164\x65\162\x73" => array("\163\145\x74\x74\x69\156\x67" => "\163\145\164\164\151\156\x67\137\151\144"))); Route::group(array("\160\162\145\x66\151\170" => "\x73\x74\141\164\165\x73\154\141\142\x65\154\x73"), function () { Route::get("\x73\x65\154\x65\143\164\x6c\151\163\164", array(Api\StatuslabelsController::class, "\x73\145\154\145\143\164\x6c\x69\163\164"))->name("\141\x70\x69\56\x73\164\141\x74\x75\x73\154\x61\x62\145\x6c\163\56\x73\x65\x6c\x65\143\x74\x6c\x69\163\x74"); Route::get("\141\163\163\x65\x74\x73\57\156\x61\155\x65", array(Api\StatuslabelsController::class, "\147\x65\164\101\x73\x73\145\x74\103\157\x75\156\x74\x42\x79\123\x74\141\x74\x75\x73\x6c\141\x62\x65\154"))->name("\141\160\x69\56\163\164\x61\164\x75\x73\x6c\x61\142\x65\x6c\163\56\x61\163\x73\x65\164\x73\56\142\x79\x6e\141\155\145"); Route::get("\141\163\163\145\x74\163\x2f\x74\171\x70\145", array(Api\StatuslabelsController::class, "\147\145\x74\x41\x73\163\145\x74\103\x6f\165\156\164\x42\171\115\x65\x74\141\123\x74\x61\164\165\163"))->name("\141\160\x69\x2e\x73\x74\x61\x74\x75\x73\x6c\141\142\x65\x6c\x73\x2e\x61\x73\163\x65\164\x73\x2e\142\171\164\x79\x70\145"); Route::get("\x7b\151\144\175\x2f\x61\x73\x73\x65\x74\x6c\151\x73\164", array(Api\StatuslabelsController::class, "\141\163\163\x65\x74\x73"))->name("\141\x70\x69\x2e\x73\x74\x61\164\165\163\154\141\142\x65\154\163\x2e\x61\x73\x73\x65\164\163"); Route::get("\x7b\163\x74\141\x74\x75\163\x6c\x61\142\x65\x6c\175\57\144\145\160\x6c\157\171\141\x62\154\145", array(Api\StatuslabelsController::class, "\143\x68\145\x63\x6b\x49\146\104\145\x70\154\x6f\x79\141\x62\x6c\145"))->name("\x61\x70\x69\x2e\163\x74\x61\x74\165\x73\154\141\142\145\154\x73\56\144\x65\x70\154\x6f\x79\x61\x62\154\x65"); Route::get("\x73\x65\154\145\x63\x74\x6c\x69\163\164", array(Api\StatuslabelsController::class, "\163\x65\x6c\x65\x63\x74\154\151\163\164"))->name("\x61\x70\x69\56\x73\164\x61\x74\165\x73\x6c\141\x62\x65\x6c\x73\56\x73\x65\x6c\145\143\164\154\x69\163\164"); }); Route::resource("\x73\x74\x61\164\x75\x73\x6c\x61\142\x65\154\163", Api\StatuslabelsController::class, array("\156\141\x6d\145\x73" => array("\151\156\x64\x65\x78" => "\141\160\x69\x2e\163\x74\141\x74\165\163\x6c\x61\x62\x65\x6c\x73\56\x69\156\144\145\x78", "\163\150\x6f\x77" => "\141\x70\151\56\x73\x74\141\164\165\x73\154\141\142\x65\154\x73\56\163\x68\157\x77", "\x75\160\x64\141\x74\x65" => "\x61\x70\151\x2e\163\x74\141\x74\165\163\x6c\x61\142\x65\x6c\163\x2e\x75\160\x64\141\x74\145", "\163\164\157\162\x65" => "\x61\x70\x69\56\163\x74\x61\x74\x75\x73\x6c\x61\142\145\154\163\56\x73\164\157\162\x65", "\x64\x65\163\164\162\x6f\x79" => "\141\x70\x69\x2e\163\164\141\164\x75\x73\154\x61\142\145\x6c\x73\x2e\144\145\x73\164\162\x6f\x79"), "\145\170\x63\x65\160\164" => array("\x63\162\x65\x61\164\145", "\x65\x64\x69\164"), "\160\141\x72\141\155\145\164\x65\x72\163" => array("\163\x74\x61\x74\x75\x73\154\x61\x62\145\154" => "\x73\164\x61\x74\x75\163\154\141\x62\x65\x6c\137\x69\x64"))); Route::group(array("\x70\162\145\146\151\x78" => "\x73\x75\x70\x70\x6c\x69\x65\x72\163"), function () { Route::get("\163\x65\x6c\x65\x63\164\154\151\163\164", array(Api\SuppliersController::class, "\x73\145\x6c\145\x63\164\154\x69\x73\x74"))->name("\x61\x70\151\56\163\x75\x70\x70\x6c\151\145\162\x73\56\x73\x65\x6c\x65\x63\164\x6c\x69\163\x74"); }); Route::resource("\163\165\160\160\154\151\145\162\163", Api\SuppliersController::class, array("\156\141\x6d\x65\163" => array("\151\156\x64\145\x78" => "\x61\x70\151\x2e\163\165\160\x70\x6c\x69\145\162\163\x2e\151\x6e\144\145\170", "\x73\150\x6f\167" => "\141\160\x69\56\163\x75\160\160\x6c\x69\145\162\163\x2e\x73\150\157\167", "\165\x70\144\x61\x74\x65" => "\x61\160\x69\x2e\x73\165\160\160\x6c\x69\145\162\163\x2e\x75\x70\x64\x61\164\145", "\x73\x74\x6f\x72\145" => "\x61\160\151\x2e\x73\165\x70\x70\154\151\x65\x72\163\56\163\164\x6f\x72\x65", "\144\x65\163\x74\162\x6f\171" => "\x61\x70\151\x2e\163\165\160\x70\154\151\145\x72\x73\56\x64\145\x73\x74\162\157\x79"), "\145\170\143\x65\160\164" => array("\143\162\x65\x61\164\x65", "\145\x64\x69\x74"), "\x70\141\x72\141\155\x65\x74\x65\162\163" => array("\163\x75\x70\x70\154\x69\x65\162" => "\163\x75\x70\160\x6c\x69\145\x72\137\x69\144"))); Route::group(array("\160\162\x65\146\151\170" => "\x75\x73\145\162\x73"), function () { Route::get("\x73\145\x6c\x65\x63\164\x6c\151\163\x74", array(Api\UsersController::class, "\x73\x65\x6c\145\143\164\x6c\x69\x73\x74"))->name("\x61\160\151\x2e\x75\163\x65\x72\x73\56\x73\145\x6c\145\x63\x74\x6c\151\x73\x74"); Route::post("\x74\x77\x6f\x5f\x66\141\143\x74\x6f\x72\137\x72\x65\x73\x65\164", array(Api\UsersController::class, "\160\157\x73\x74\x54\x77\157\x46\141\x63\164\157\162\122\x65\x73\x65\x74"))->name("\141\x70\151\56\165\x73\145\162\x73\56\164\167\157\x5f\x66\141\x63\x74\157\162\137\162\145\x73\x65\164"); Route::get("\x6d\145", array(Api\UsersController::class, "\147\145\164\103\165\162\x72\145\156\x74\125\x73\145\x72\111\x6e\146\x6f"))->name("\141\160\x69\56\165\163\145\x72\x73\56\155\145"); Route::get("\154\x69\163\164\x2f\173\163\164\141\164\165\x73\x3f\175", array(Api\UsersController::class, "\147\145\x74\104\x61\x74\x61\x74\141\x62\154\x65"))->name("\141\x70\151\56\165\x73\x65\x72\x73\56\154\151\163\x74"); Route::get("\x7b\165\163\x65\162\175\57\141\163\163\145\164\163", array(Api\UsersController::class, "\x61\163\x73\x65\164\x73"))->name("\x61\160\151\56\x75\x73\x65\162\x73\56\141\163\163\x65\164\x6c\151\163\164"); Route::post("\x7b\x75\163\145\x72\x7d\57\145\x6d\x61\151\x6c", array(Api\UsersController::class, "\x65\155\141\151\x6c\x41\x73\163\x65\x74\114\x69\x73\x74"))->name("\x61\x70\x69\x2e\x75\163\145\x72\163\x2e\145\x6d\141\x69\x6c\137\141\163\163\145\164\x73"); Route::get("\x7b\x75\x73\145\x72\175\57\141\x63\143\x65\163\x73\x6f\x72\x69\145\163", array(Api\UsersController::class, "\x61\143\x63\145\163\163\157\162\x69\145\x73"))->name("\x61\160\x69\56\x75\x73\145\162\x73\56\x61\x63\143\x65\163\x73\157\x72\151\x65\x73\x6c\151\x73\x74"); Route::get("\173\x75\163\x65\162\175\57\154\x69\x63\x65\156\x73\x65\x73", array(Api\UsersController::class, "\154\151\x63\145\156\163\145\163"))->name("\x61\x70\x69\x2e\x75\163\145\162\163\56\154\x69\x63\x65\x6e\x73\x65\154\x69\x73\164"); Route::post("\x7b\165\163\x65\162\x7d\57\165\160\x6c\157\x61\x64", array(Api\UsersController::class, "\160\157\x73\x74\x55\x70\x6c\157\141\x64"))->name("\x61\160\x69\x2e\x75\x73\x65\162\x73\x2e\x75\160\x6c\x6f\141\x64\163"); Route::post("\173\165\163\145\162\x7d\x2f\162\x65\163\164\x6f\x72\145", array(Api\UsersController::class, "\162\x65\163\164\x6f\162\145"))->name("\x61\160\151\56\x75\163\145\x72\x73\56\162\145\x73\x74\157\162\x65"); }); Route::resource("\165\163\x65\x72\x73", Api\UsersController::class, array("\x6e\141\x6d\145\163" => array("\x69\156\144\145\x78" => "\141\160\x69\x2e\x75\x73\x65\x72\163\56\151\156\x64\145\x78", "\x73\150\x6f\x77" => "\141\160\151\56\165\x73\145\162\163\56\x73\x68\157\x77", "\165\x70\x64\x61\x74\x65" => "\x61\x70\151\x2e\x75\163\x65\162\x73\56\165\160\144\x61\x74\145", "\163\164\x6f\162\x65" => "\x61\x70\151\56\165\163\x65\x72\x73\56\x73\x74\x6f\x72\x65", "\x64\x65\x73\164\x72\157\171" => "\141\160\x69\56\165\x73\x65\x72\163\56\x64\x65\163\164\x72\x6f\171"), "\145\x78\143\145\160\x74" => array("\143\162\145\141\164\145", "\145\144\x69\x74"), "\160\141\x72\141\155\x65\x74\x65\x72\163" => array("\165\163\145\162" => "\x75\x73\145\162\137\151\x64"))); Route::resource("\153\151\x74\x73", Api\PredefinedKitsController::class, array("\156\x61\155\145\163" => array("\151\156\144\145\x78" => "\x61\x70\151\x2e\153\151\x74\x73\56\151\x6e\144\145\170", "\x73\x68\x6f\x77" => "\141\160\x69\x2e\x6b\151\x74\x73\x2e\x73\150\x6f\x77", "\x75\160\144\141\164\x65" => "\x61\x70\x69\x2e\153\x69\x74\x73\56\165\160\x64\x61\x74\145", "\x73\x74\x6f\162\x65" => "\x61\160\151\56\x6b\x69\164\163\x2e\163\164\x6f\x72\145", "\x64\x65\x73\164\162\157\x79" => "\x61\x70\x69\x2e\153\151\164\163\x2e\144\x65\163\164\x72\157\x79"), "\x65\170\x63\x65\160\164" => array("\x63\162\x65\x61\x74\145", "\145\x64\x69\x74"), "\160\141\162\x61\x6d\145\164\x65\x72\163" => array("\x6b\151\164" => "\x6b\151\164\x5f\151\144"))); Route::group(array("\x70\162\145\x66\151\x78" => "\153\x69\x74\x73\57\173\153\151\x74\137\151\144\175"), function () { Route::get("\x6c\151\x63\x65\156\x73\145\x73", array(Api\PredefinedKitsController::class, "\151\156\144\145\x78\x4c\x69\143\x65\x6e\x73\x65\163"))->name("\141\160\151\56\153\x69\x74\163\56\154\x69\143\145\x6e\163\x65\163\56\x69\156\x64\x65\x78"); Route::post("\154\x69\143\x65\x6e\x73\145\163", array(Api\PredefinedKitsController::class, "\x73\x74\x6f\x72\x65\x4c\151\x63\145\x6e\x73\x65"))->name("\x61\160\x69\56\x6b\151\x74\x73\x2e\154\x69\x63\145\x6e\x73\x65\163\56\163\164\x6f\x72\x65"); Route::put("\x6c\x69\143\145\156\163\x65\x73\x2f\173\x6c\151\143\145\156\163\145\x5f\151\144\x7d", array(Api\PredefinedKitsController::class, "\165\160\x64\x61\164\x65\x4c\x69\x63\x65\156\163\x65"))->name("\x61\x70\151\x2e\153\x69\164\163\56\154\x69\x63\145\x6e\163\145\163\56\165\x70\144\x61\164\145"); Route::delete("\154\x69\x63\x65\x6e\163\145\163\57\x7b\154\x69\x63\145\x6e\163\x65\137\151\144\175", array(Api\PredefinedKitsController::class, "\144\x65\x74\141\143\x68\114\151\143\x65\156\x73\x65"))->name("\x61\x70\x69\56\153\x69\x74\163\x2e\x6c\151\143\x65\x6e\163\x65\x73\x2e\x64\145\x73\x74\162\157\x79"); Route::get("\155\x6f\144\145\154\x73", array(Api\PredefinedKitsController::class, "\x69\x6e\x64\x65\170\x4d\157\144\145\154\x73"))->name("\141\160\151\56\x6b\x69\164\163\x2e\x6d\x6f\x64\145\x6c\163\x2e\x69\156\x64\145\x78"); Route::post("\155\157\144\145\x6c\163", array(Api\PredefinedKitsController::class, "\163\164\157\x72\x65\x4d\x6f\x64\145\x6c"))->name("\141\160\x69\56\153\x69\x74\163\x2e\155\157\144\145\154\163\56\163\x74\x6f\162\145"); Route::put("\155\157\144\145\x6c\x73\57\x7b\155\157\x64\x65\154\x5f\151\144\x7d", array(Api\PredefinedKitsController::class, "\165\160\144\141\x74\145\x4d\157\x64\145\x6c\x73"))->name("\x61\160\151\56\153\x69\164\163\x2e\x6d\x6f\x64\145\x6c\163\x2e\165\x70\144\x61\164\145"); Route::delete("\155\x6f\x64\145\154\x73\57\173\155\x6f\144\x65\154\137\151\x64\x7d", array(Api\PredefinedKitsController::class, "\144\x65\164\141\143\150\115\x6f\x64\x65\154\163"))->name("\141\x70\151\56\x6b\151\164\163\56\155\x6f\144\145\154\163\56\x64\x65\163\x74\x72\x6f\171"); Route::get("\141\x63\143\145\x73\x73\157\162\151\145\163", array(Api\PredefinedKitsController::class, "\151\x6e\x64\145\x78\x41\143\x63\145\163\x73\x6f\162\x69\x65\x73"))->name("\x61\x70\x69\x2e\x6b\151\164\x73\56\x61\143\143\145\163\x73\x6f\162\151\145\163\x2e\151\x6e\x64\145\x78"); Route::post("\141\x63\x63\145\163\x73\x6f\162\x69\145\x73", array(Api\PredefinedKitsController::class, "\163\x74\x6f\162\x65\x41\143\143\145\x73\163\x6f\162\x79"))->name("\x61\160\151\x2e\x6b\151\164\163\56\141\x63\143\x65\x73\x73\x6f\x72\x69\x65\163\x2e\163\164\x6f\x72\145"); Route::put("\141\x63\143\x65\x73\x73\157\x72\151\x65\x73\57\173\141\x63\x63\145\x73\x73\x6f\x72\x79\x5f\151\x64\175", array(Api\PredefinedKitsController::class, "\165\x70\144\x61\164\145\101\x63\x63\145\x73\163\x6f\162\x79"))->name("\x61\160\x69\56\x6b\151\x74\x73\x2e\141\143\143\145\163\x73\x6f\162\x69\145\163\x2e\x75\x70\x64\x61\164\145"); Route::delete("\141\143\x63\x65\163\x73\x6f\162\151\x65\x73\57\x7b\141\x63\x63\145\x73\x73\x6f\162\171\137\151\144\175", array(Api\PredefinedKitsController::class, "\x64\145\x74\141\143\150\x41\x63\x63\x65\163\x73\x6f\x72\171"))->name("\x61\160\151\56\153\151\164\163\x2e\x61\143\x63\145\x73\163\157\x72\151\x65\x73\x2e\x64\145\163\164\162\x6f\x79"); Route::get("\x63\x6f\156\163\x75\155\141\x62\x6c\145\x73", array(Api\PredefinedKitsController::class, "\x69\156\x64\x65\x78\x43\157\x6e\x73\x75\x6d\x61\142\154\x65\163"))->name("\141\160\x69\x2e\153\151\x74\x73\x2e\x63\157\156\x73\x75\x6d\x61\x62\x6c\x65\x73\56\x69\x6e\x64\x65\x78"); Route::post("\143\157\156\x73\x75\155\x61\142\x6c\x65\x73", array(Api\PredefinedKitsController::class, "\x73\x74\x6f\162\145\x43\x6f\x6e\x73\165\x6d\141\x62\x6c\145"))->name("\141\160\x69\56\153\x69\x74\x73\56\x63\x6f\156\163\165\155\141\142\154\145\x73\x2e\x73\164\157\x72\145"); Route::put("\143\157\x6e\163\165\x6d\x61\142\x6c\x65\163\x2f\173\143\x6f\156\x73\x75\155\x61\142\x6c\145\x5f\x69\x64\175", array(Api\PredefinedKitsController::class, "\x75\x70\x64\141\x74\x65\103\x6f\156\x73\165\x6d\x61\142\154\x65"))->name("\141\x70\x69\56\153\x69\x74\163\x2e\x63\x6f\156\x73\x75\155\x61\x62\154\145\163\56\165\160\x64\x61\x74\x65"); Route::delete("\143\157\156\x73\165\x6d\141\x62\x6c\145\163\57\x7b\x63\157\x6e\163\x75\x6d\141\x62\x6c\x65\137\x69\144\x7d", array(Api\PredefinedKitsController::class, "\144\x65\x74\x61\143\150\103\157\156\x73\x75\x6d\141\x62\154\x65"))->name("\x61\160\151\56\x6b\x69\x74\x73\x2e\143\x6f\x6e\x73\165\x6d\x61\x62\x6c\145\x73\56\x64\x65\x73\164\x72\x6f\171"); }); Route::group(array("\160\x72\145\x66\x69\x78" => "\x72\145\x70\x6f\162\164\163"), function () { Route::get("\x61\x63\x74\x69\166\x69\164\171", array(Api\ReportsController::class, "\x69\x6e\x64\x65\170"))->name("\x61\160\x69\x2e\141\x63\164\151\x76\x69\x74\171\56\151\x6e\x64\145\170"); }); Route::get("\57\x76\145\x72\163\x69\x6f\x6e", function () { return response()->json(array("\166\x65\162\163\151\x6f\156" => config("\166\x65\x72\x73\x69\x6f\156\x2e\x61\x70\160\137\x76\145\x72\163\x69\x6f\156")), 200); }); Route::fallback(function () { return response()->json(array("\x73\164\141\x74\x75\x73" => "\145\x72\x72\157\162", "\155\x65\163\163\x61\147\x65" => "\64\x30\x34\x20\145\156\x64\x70\x6f\x69\156\164\40\156\157\164\x20\x66\157\x75\156\144\56\x20\x50\154\145\141\163\145\40\143\150\145\x63\x6b\40\164\150\x65\40\x41\x50\111\40\x72\x65\146\x65\x72\x65\x6e\143\x65\40\141\164\x20\150\164\164\x70\x73\72\x2f\57\163\156\x69\160\x65\55\x69\164\56\x72\145\x61\144\x6d\x65\x2e\151\x6f\x2f\162\145\x66\x65\162\x65\156\x63\x65\40\164\x6f\40\146\151\156\x64\40\x61\x20\166\x61\x6c\x69\144\40\101\120\x49\40\x65\156\144\160\x6f\151\x6e\164\x2e", "\x70\141\171\154\x6f\141\x64" => null), 404); }); });
Function Calls
None |
Stats
MD5 | a3b55a59a53db625efa9b88772413d30 |
Eval Count | 0 |
Decode Time | 122 ms |