From fba2bc778462a584c04e83684a3bdfef2b2b3993 Mon Sep 17 00:00:00 2001 From: Amanmyrat Date: Sat, 3 Dec 2022 10:44:49 +0500 Subject: [PATCH] added tariffs api --- .../Controllers/Admin/TarifCrudController.php | 101 + app/Http/Controllers/Api/TarifController.php | 22 + app/Http/Controllers/NewsController.php | 86 - app/Http/Requests/StoreTarifRequest.php | 30 + app/Http/Requests/TarifRequest.php | 55 + app/Http/Requests/UpdateTarifRequest.php | 30 + app/Models/Tarif.php | 23 + app/Policies/TarifPolicy.php | 94 + app/Transformers/TarifTransformer.php | 26 + bootstrap/cache/config.php | 1218 +++ bootstrap/cache/routes-v7.php | 7233 +++++++++++++++++ config/backpack/base.php | 4 +- database/factories/TarifFactory.php | 20 + .../2022_12_03_001809_create_tarifs_table.php | 38 + database/seeders/TarifSeeder.php | 18 + .../base/inc/sidebar_content.blade.php | 3 +- routes/api.php | 2 + routes/backpack/custom.php | 2 + 18 files changed, 8916 insertions(+), 89 deletions(-) create mode 100644 app/Http/Controllers/Admin/TarifCrudController.php create mode 100644 app/Http/Controllers/Api/TarifController.php delete mode 100644 app/Http/Controllers/NewsController.php create mode 100644 app/Http/Requests/StoreTarifRequest.php create mode 100644 app/Http/Requests/TarifRequest.php create mode 100644 app/Http/Requests/UpdateTarifRequest.php create mode 100644 app/Models/Tarif.php create mode 100644 app/Policies/TarifPolicy.php create mode 100644 app/Transformers/TarifTransformer.php create mode 100644 bootstrap/cache/config.php create mode 100644 bootstrap/cache/routes-v7.php create mode 100644 database/factories/TarifFactory.php create mode 100644 database/migrations/2022_12_03_001809_create_tarifs_table.php create mode 100644 database/seeders/TarifSeeder.php diff --git a/app/Http/Controllers/Admin/TarifCrudController.php b/app/Http/Controllers/Admin/TarifCrudController.php new file mode 100644 index 0000000..b92c14d --- /dev/null +++ b/app/Http/Controllers/Admin/TarifCrudController.php @@ -0,0 +1,101 @@ +type('select_from_array')->options(['resident' => 'Для резидентов', 'non_resident' => 'Для не резидентов'])->allows_null(false); + CRUD::column('title'); + CRUD::column('prices'); + + /** + * Columns can be defined using the fluent syntax or array syntax: + * - CRUD::column('price')->type('number'); + * - CRUD::addColumn(['name' => 'price', 'type' => 'number']); + */ + } + + /** + * Define what happens when the Create operation is loaded. + * + * @see https://backpackforlaravel.com/docs/crud-operation-create + * @return void + */ + protected function setupCreateOperation() + { + CRUD::setValidation(TarifRequest::class); + + CRUD::field('type')->type('select_from_array')->options(['resident' => 'Для резидентов', 'non_resident' => 'Для не резидентов'])->allows_null(false); + CRUD::field('title'); + CRUD::field('prices')->type('repeatable')->fields([ + [ + 'name' => 'price', + 'type' => 'text', + 'label' => 'Price', + 'wrapper' => ['class' => 'form-group col-md-12'], + ], + ])->new_item_label("Add price"); + + /** + * Fields can be defined using the fluent syntax or array syntax: + * - CRUD::field('price')->type('number'); + * - CRUD::addField(['name' => 'price', 'type' => 'number'])); + */ + } + + /** + * Define what happens when the Update operation is loaded. + * + * @see https://backpackforlaravel.com/docs/crud-operation-update + * @return void + */ + protected function setupUpdateOperation() + { + $this->setupCreateOperation(); + } + + protected function setupReorderOperation() + { + // define which model attribute will be shown on draggable elements + $this->crud->set('reorder.label', 'title'); + // define how deep the admin is allowed to nest the items + // for infinite levels, set it to 0 + $this->crud->set('reorder.max_level', 1); + } +} diff --git a/app/Http/Controllers/Api/TarifController.php b/app/Http/Controllers/Api/TarifController.php new file mode 100644 index 0000000..5b02a36 --- /dev/null +++ b/app/Http/Controllers/Api/TarifController.php @@ -0,0 +1,22 @@ +type ?? null; + if($type){ + $tarifs = Tarif::where('type', $type)->orderBy('lft', 'desc')->get(); + }else{ + $tarifs = Tarif::orderBy('lft', 'desc')->get(); + } + return $this->respondWithCollection($tarifs, new TarifTransformer($this->locale)); + } + +} diff --git a/app/Http/Controllers/NewsController.php b/app/Http/Controllers/NewsController.php deleted file mode 100644 index d49973a..0000000 --- a/app/Http/Controllers/NewsController.php +++ /dev/null @@ -1,86 +0,0 @@ -check(); + } + + /** + * Get the validation rules that apply to the request. + * + * @return array + */ + public function rules() + { + return [ + // 'name' => 'required|min:5|max:255' + ]; + } + + /** + * Get the validation attributes that apply to the request. + * + * @return array + */ + public function attributes() + { + return [ + // + ]; + } + + /** + * Get the validation messages that apply to the request. + * + * @return array + */ + public function messages() + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateTarifRequest.php b/app/Http/Requests/UpdateTarifRequest.php new file mode 100644 index 0000000..d8e9f47 --- /dev/null +++ b/app/Http/Requests/UpdateTarifRequest.php @@ -0,0 +1,30 @@ + 'json', + ]; + +} diff --git a/app/Policies/TarifPolicy.php b/app/Policies/TarifPolicy.php new file mode 100644 index 0000000..695b48c --- /dev/null +++ b/app/Policies/TarifPolicy.php @@ -0,0 +1,94 @@ +locale = $locale; + } + + public function transform(Tarif $tarif) + { + return [ + 'id' => $tarif->id, + 'type' => $tarif->type, + 'title' => $tarif->getTranslations('title', [$this->locale]), + 'prices' => $tarif->getTranslations('prices', [$this->locale]), + ]; + } +} \ No newline at end of file diff --git a/bootstrap/cache/config.php b/bootstrap/cache/config.php new file mode 100644 index 0000000..edabfcb --- /dev/null +++ b/bootstrap/cache/config.php @@ -0,0 +1,1218 @@ + + array ( + 'name' => 'Laravel', + 'env' => 'local', + 'debug' => true, + 'url' => 'http://localhost', + 'mix_url' => NULL, + 'asset_url' => NULL, + 'timezone' => 'Asia/Ashgabat', + 'locale' => 'tm', + 'fallback_locale' => 'tm', + 'faker_locale' => 'tm_TM', + 'key' => 'base64:UQrSKPPjjcij2VfL6jm8R+ObTvpoNoE6ajRnzIQTuR8=', + 'cipher' => 'AES-256-CBC', + 'providers' => + array ( + 0 => 'Illuminate\\Auth\\AuthServiceProvider', + 1 => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', + 2 => 'Illuminate\\Bus\\BusServiceProvider', + 3 => 'Illuminate\\Cache\\CacheServiceProvider', + 4 => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', + 5 => 'Illuminate\\Cookie\\CookieServiceProvider', + 6 => 'Illuminate\\Database\\DatabaseServiceProvider', + 7 => 'Illuminate\\Encryption\\EncryptionServiceProvider', + 8 => 'Illuminate\\Filesystem\\FilesystemServiceProvider', + 9 => 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', + 10 => 'Illuminate\\Hashing\\HashServiceProvider', + 11 => 'Illuminate\\Mail\\MailServiceProvider', + 12 => 'Illuminate\\Notifications\\NotificationServiceProvider', + 13 => 'Illuminate\\Pagination\\PaginationServiceProvider', + 14 => 'Illuminate\\Pipeline\\PipelineServiceProvider', + 15 => 'Illuminate\\Queue\\QueueServiceProvider', + 16 => 'Illuminate\\Redis\\RedisServiceProvider', + 17 => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', + 18 => 'Illuminate\\Session\\SessionServiceProvider', + 19 => 'Illuminate\\Translation\\TranslationServiceProvider', + 20 => 'Illuminate\\Validation\\ValidationServiceProvider', + 21 => 'Illuminate\\View\\ViewServiceProvider', + 22 => 'App\\Providers\\AppServiceProvider', + 23 => 'App\\Providers\\AuthServiceProvider', + 24 => 'App\\Providers\\EventServiceProvider', + 25 => 'App\\Providers\\RouteServiceProvider', + 26 => 'App\\Providers\\FortifyServiceProvider', + 27 => 'App\\Providers\\JetstreamServiceProvider', + ), + 'aliases' => + array ( + 'App' => 'Illuminate\\Support\\Facades\\App', + 'Arr' => 'Illuminate\\Support\\Arr', + 'Artisan' => 'Illuminate\\Support\\Facades\\Artisan', + 'Auth' => 'Illuminate\\Support\\Facades\\Auth', + 'Blade' => 'Illuminate\\Support\\Facades\\Blade', + 'Broadcast' => 'Illuminate\\Support\\Facades\\Broadcast', + 'Bus' => 'Illuminate\\Support\\Facades\\Bus', + 'Cache' => 'Illuminate\\Support\\Facades\\Cache', + 'Config' => 'Illuminate\\Support\\Facades\\Config', + 'Cookie' => 'Illuminate\\Support\\Facades\\Cookie', + 'Crypt' => 'Illuminate\\Support\\Facades\\Crypt', + 'Date' => 'Illuminate\\Support\\Facades\\Date', + 'DB' => 'Illuminate\\Support\\Facades\\DB', + 'Eloquent' => 'Illuminate\\Database\\Eloquent\\Model', + 'Event' => 'Illuminate\\Support\\Facades\\Event', + 'File' => 'Illuminate\\Support\\Facades\\File', + 'Gate' => 'Illuminate\\Support\\Facades\\Gate', + 'Hash' => 'Illuminate\\Support\\Facades\\Hash', + 'Http' => 'Illuminate\\Support\\Facades\\Http', + 'Lang' => 'Illuminate\\Support\\Facades\\Lang', + 'Log' => 'Illuminate\\Support\\Facades\\Log', + 'Mail' => 'Illuminate\\Support\\Facades\\Mail', + 'Notification' => 'Illuminate\\Support\\Facades\\Notification', + 'Password' => 'Illuminate\\Support\\Facades\\Password', + 'Queue' => 'Illuminate\\Support\\Facades\\Queue', + 'Redirect' => 'Illuminate\\Support\\Facades\\Redirect', + 'Request' => 'Illuminate\\Support\\Facades\\Request', + 'Response' => 'Illuminate\\Support\\Facades\\Response', + 'Route' => 'Illuminate\\Support\\Facades\\Route', + 'Schema' => 'Illuminate\\Support\\Facades\\Schema', + 'Session' => 'Illuminate\\Support\\Facades\\Session', + 'Storage' => 'Illuminate\\Support\\Facades\\Storage', + 'Str' => 'Illuminate\\Support\\Str', + 'URL' => 'Illuminate\\Support\\Facades\\URL', + 'Validator' => 'Illuminate\\Support\\Facades\\Validator', + 'View' => 'Illuminate\\Support\\Facades\\View', + ), + ), + 'auth' => + array ( + 'defaults' => + array ( + 'guard' => 'web', + 'passwords' => 'users', + ), + 'guards' => + array ( + 'web' => + array ( + 'driver' => 'session', + 'provider' => 'users', + ), + 'api' => + array ( + 'driver' => 'token', + 'provider' => 'users', + 'hash' => false, + ), + 'sanctum' => + array ( + 'driver' => 'sanctum', + 'provider' => NULL, + ), + 'backpack' => + array ( + 'driver' => 'session', + 'provider' => 'backpack', + ), + ), + 'providers' => + array ( + 'users' => + array ( + 'driver' => 'eloquent', + 'model' => 'App\\Models\\User', + ), + 'backpack' => + array ( + 'driver' => 'eloquent', + 'model' => 'App\\Models\\User', + ), + ), + 'passwords' => + array ( + 'users' => + array ( + 'provider' => 'users', + 'table' => 'password_resets', + 'expire' => 60, + 'throttle' => 60, + ), + 'backpack' => + array ( + 'provider' => 'backpack', + 'table' => 'password_resets', + 'expire' => 60, + 'throttle' => 600, + ), + ), + 'password_timeout' => 10800, + ), + 'backpack' => + array ( + 'base' => + array ( + 'default_date_format' => 'D MMM YYYY', + 'default_datetime_format' => 'D MMM YYYY, HH:mm', + 'html_direction' => 'ltr', + 'project_name' => 'Backpack Admin Panel', + 'home_link' => '', + 'meta_robots_content' => 'noindex, nofollow', + 'show_getting_started' => false, + 'styles' => + array ( + 0 => 'packages/backpack/base/css/bundle.css', + 1 => 'packages/source-sans-pro/source-sans-pro.css', + 2 => 'packages/line-awesome/css/line-awesome.min.css', + ), + 'mix_styles' => + array ( + ), + 'vite_styles' => + array ( + ), + 'project_logo' => 'Backpack', + 'breadcrumbs' => true, + 'header_class' => 'app-header bg-light border-0 navbar', + 'body_class' => 'app aside-menu-fixed sidebar-lg-show', + 'sidebar_class' => 'sidebar sidebar-pills bg-light', + 'footer_class' => 'app-footer d-print-none', + 'developer_name' => 'TPS', + 'developer_link' => 'http://tabacitu.ro', + 'show_powered_by' => false, + 'scripts' => + array ( + 0 => 'packages/backpack/base/js/bundle.js', + ), + 'mix_scripts' => + array ( + ), + 'vite_scripts' => + array ( + ), + 'cachebusting_string' => '5.4.10@050b288caf2f60c79313f2b0b7d4fefd25177f3f', + 'registration_open' => true, + 'route_prefix' => 'admin', + 'web_middleware' => 'web', + 'setup_auth_routes' => true, + 'setup_dashboard_routes' => true, + 'setup_my_account_routes' => true, + 'setup_password_recovery_routes' => true, + 'password_recovery_throttle_notifications' => 600, + 'password_recovery_throttle_access' => '3,10', + 'user_model_fqn' => 'App\\Models\\User', + 'middleware_class' => + array ( + 0 => 'App\\Http\\Middleware\\CheckIfAdmin', + 1 => 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull', + ), + 'middleware_key' => 'admin', + 'authentication_column' => 'email', + 'authentication_column_name' => 'Email', + 'email_column' => 'email', + 'guard' => 'backpack', + 'passwords' => 'backpack', + 'avatar_type' => 'gravatar', + 'gravatar_fallback' => 'blank', + 'view_namespace' => 'backpack::', + 'component_view_namespaces' => + array ( + 'widgets' => + array ( + 0 => 'backpack::widgets', + ), + ), + 'root_disk_name' => 'root', + 'token_username' => false, + ), + 'crud' => + array ( + 'show_translatable_field_icon' => true, + 'translatable_field_icon_position' => 'left', + 'locales' => + array ( + 'en' => 'English', + 'ru' => 'Russian', + 'tm' => 'Turkmen', + ), + 'view_namespaces' => + array ( + 'buttons' => + array ( + 0 => 'crud::buttons', + ), + 'columns' => + array ( + 0 => 'crud::columns', + ), + 'fields' => + array ( + 0 => 'crud::fields', + ), + 'filters' => + array ( + 0 => 'crud::filters', + ), + ), + ), + 'operations' => + array ( + 'create' => + array ( + 'contentClass' => 'col-md-8 bold-labels', + 'tabsType' => 'horizontal', + 'groupedErrors' => true, + 'inlineErrors' => true, + 'autoFocusOnFirstField' => true, + 'defaultSaveAction' => 'save_and_back', + 'showSaveActionChange' => true, + 'showCancelButton' => true, + 'warnBeforeLeaving' => false, + ), + 'list' => + array ( + 'contentClass' => 'col-md-12', + 'responsiveTable' => true, + 'persistentTable' => true, + 'searchableTable' => true, + 'persistentTableDuration' => false, + 'defaultPageLength' => 10, + 'pageLengthMenu' => + array ( + 0 => + array ( + 0 => 10, + 1 => 25, + 2 => 50, + 3 => 100, + 4 => -1, + ), + 1 => + array ( + 0 => 10, + 1 => 25, + 2 => 50, + 3 => 100, + 4 => 'backpack::crud.all', + ), + ), + 'actionsColumnPriority' => 1, + 'resetButton' => true, + 'searchOperator' => 'like', + 'showEntryCount' => true, + ), + 'reorder' => + array ( + 'contentClass' => 'col-md-8 col-md-offset-2', + ), + 'show' => + array ( + 'contentClass' => 'col-md-8', + 'setFromDb' => true, + 'timestamps' => true, + 'softDeletes' => false, + ), + 'update' => + array ( + 'contentClass' => 'col-md-8 bold-labels', + 'tabsType' => 'horizontal', + 'groupedErrors' => true, + 'inlineErrors' => true, + 'autoFocusOnFirstField' => true, + 'defaultSaveAction' => 'save_and_back', + 'showSaveActionChange' => true, + 'showCancelButton' => true, + 'warnBeforeLeaving' => false, + ), + ), + ), + 'broadcasting' => + array ( + 'default' => 'log', + 'connections' => + array ( + 'pusher' => + array ( + 'driver' => 'pusher', + 'key' => '', + 'secret' => '', + 'app_id' => '', + 'options' => + array ( + 'cluster' => 'mt1', + 'useTLS' => true, + ), + ), + 'ably' => + array ( + 'driver' => 'ably', + 'key' => NULL, + ), + 'redis' => + array ( + 'driver' => 'redis', + 'connection' => 'default', + ), + 'log' => + array ( + 'driver' => 'log', + ), + 'null' => + array ( + 'driver' => 'null', + ), + ), + ), + 'cache' => + array ( + 'default' => 'file', + 'stores' => + array ( + 'apc' => + array ( + 'driver' => 'apc', + ), + 'array' => + array ( + 'driver' => 'array', + 'serialize' => false, + ), + 'database' => + array ( + 'driver' => 'database', + 'table' => 'cache', + 'connection' => NULL, + 'lock_connection' => NULL, + ), + 'file' => + array ( + 'driver' => 'file', + 'path' => 'C:\\xampp2\\htdocs\\exchange\\storage\\framework/cache/data', + ), + 'memcached' => + array ( + 'driver' => 'memcached', + 'persistent_id' => NULL, + 'sasl' => + array ( + 0 => NULL, + 1 => NULL, + ), + 'options' => + array ( + ), + 'servers' => + array ( + 0 => + array ( + 'host' => '127.0.0.1', + 'port' => 11211, + 'weight' => 100, + ), + ), + ), + 'redis' => + array ( + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ), + 'dynamodb' => + array ( + 'driver' => 'dynamodb', + 'key' => '', + 'secret' => '', + 'region' => 'us-east-1', + 'table' => 'cache', + 'endpoint' => NULL, + ), + ), + 'prefix' => 'laravel_cache', + ), + 'cors' => + array ( + 'paths' => + array ( + 0 => 'api/*', + 1 => 'sanctum/csrf-cookie', + ), + 'allowed_methods' => + array ( + 0 => '*', + ), + 'allowed_origins' => + array ( + 0 => '*', + ), + 'allowed_origins_patterns' => + array ( + ), + 'allowed_headers' => + array ( + 0 => '*', + ), + 'exposed_headers' => + array ( + ), + 'max_age' => 0, + 'supports_credentials' => false, + ), + 'database' => + array ( + 'default' => 'mysql', + 'connections' => + array ( + 'sqlite' => + array ( + 'driver' => 'sqlite', + 'url' => NULL, + 'database' => 'exchange', + 'prefix' => '', + 'foreign_key_constraints' => true, + ), + 'mysql' => + array ( + 'driver' => 'mysql', + 'url' => NULL, + 'host' => '127.0.0.1', + 'port' => '3306', + 'database' => 'exchange', + 'username' => 'root', + 'password' => '', + 'unix_socket' => '', + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => NULL, + 'options' => + array ( + ), + ), + 'birzha' => + array ( + 'driver' => 'mysql', + 'url' => NULL, + 'host' => '127.0.0.1', + 'port' => '3306', + 'database' => 'forge', + 'username' => 'forge', + 'password' => '', + 'unix_socket' => '', + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => NULL, + 'options' => + array ( + ), + ), + 'pgsql' => + array ( + 'driver' => 'pgsql', + 'url' => NULL, + 'host' => '127.0.0.1', + 'port' => '3306', + 'database' => 'exchange', + 'username' => 'root', + 'password' => '', + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'schema' => 'public', + 'sslmode' => 'prefer', + ), + 'sqlsrv' => + array ( + 'driver' => 'sqlsrv', + 'url' => NULL, + 'host' => '127.0.0.1', + 'port' => '3306', + 'database' => 'exchange', + 'username' => 'root', + 'password' => '', + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + ), + ), + 'migrations' => 'migrations', + 'redis' => + array ( + 'client' => 'phpredis', + 'options' => + array ( + 'cluster' => 'redis', + 'prefix' => 'laravel_database_', + ), + 'default' => + array ( + 'url' => NULL, + 'host' => '127.0.0.1', + 'password' => NULL, + 'port' => '6379', + 'database' => '0', + ), + 'cache' => + array ( + 'url' => NULL, + 'host' => '127.0.0.1', + 'password' => NULL, + 'port' => '6379', + 'database' => '1', + ), + ), + ), + 'excel' => + array ( + 'exports' => + array ( + 'chunk_size' => 1000, + 'pre_calculate_formulas' => true, + 'strict_null_comparison' => false, + 'csv' => + array ( + 'delimiter' => ',', + 'enclosure' => '"', + 'line_ending' => ' +', + 'use_bom' => false, + 'include_separator_line' => false, + 'excel_compatibility' => false, + ), + 'properties' => + array ( + 'creator' => '', + 'lastModifiedBy' => '', + 'title' => '', + 'description' => '', + 'subject' => '', + 'keywords' => '', + 'category' => '', + 'manager' => '', + 'company' => '', + ), + ), + 'imports' => + array ( + 'read_only' => true, + 'ignore_empty' => false, + 'heading_row' => + array ( + 'formatter' => 'slug', + ), + 'csv' => + array ( + 'delimiter' => ',', + 'enclosure' => '"', + 'escape_character' => '\\', + 'contiguous' => false, + 'input_encoding' => 'UTF-8', + ), + 'properties' => + array ( + 'creator' => '', + 'lastModifiedBy' => '', + 'title' => '', + 'description' => '', + 'subject' => '', + 'keywords' => '', + 'category' => '', + 'manager' => '', + 'company' => '', + ), + ), + 'extension_detector' => + array ( + 'xlsx' => 'Xlsx', + 'xlsm' => 'Xlsx', + 'xltx' => 'Xlsx', + 'xltm' => 'Xlsx', + 'xls' => 'Xls', + 'xlt' => 'Xls', + 'ods' => 'Ods', + 'ots' => 'Ods', + 'slk' => 'Slk', + 'xml' => 'Xml', + 'gnumeric' => 'Gnumeric', + 'htm' => 'Html', + 'html' => 'Html', + 'csv' => 'Csv', + 'tsv' => 'Csv', + 'pdf' => 'Dompdf', + ), + 'value_binder' => + array ( + 'default' => 'Maatwebsite\\Excel\\DefaultValueBinder', + ), + 'cache' => + array ( + 'driver' => 'memory', + 'batch' => + array ( + 'memory_limit' => 60000, + ), + 'illuminate' => + array ( + 'store' => NULL, + ), + ), + 'transactions' => + array ( + 'handler' => 'db', + ), + 'temporary_files' => + array ( + 'local_path' => 'C:\\xampp2\\htdocs\\exchange\\storage\\framework/laravel-excel', + 'remote_disk' => NULL, + 'remote_prefix' => NULL, + 'force_resync_remote' => NULL, + ), + ), + 'filesystems' => + array ( + 'default' => 'local', + 'disks' => + array ( + 'local' => + array ( + 'driver' => 'local', + 'root' => 'C:\\xampp2\\htdocs\\exchange\\storage\\app', + ), + 'public' => + array ( + 'driver' => 'local', + 'root' => 'C:\\xampp2\\htdocs\\exchange\\storage\\app/public', + 'url' => 'http://localhost/storage', + 'visibility' => 'public', + ), + 's3' => + array ( + 'driver' => 's3', + 'key' => '', + 'secret' => '', + 'region' => 'us-east-1', + 'bucket' => '', + 'url' => NULL, + 'endpoint' => NULL, + ), + 'uploads' => + array ( + 'driver' => 'local', + 'root' => 'C:\\xampp2\\htdocs\\exchange\\public\\uploads', + ), + 'root' => + array ( + 'driver' => 'local', + 'root' => 'C:\\xampp2\\htdocs\\exchange', + ), + ), + 'links' => + array ( + 'C:\\xampp2\\htdocs\\exchange\\public\\storage' => 'C:\\xampp2\\htdocs\\exchange\\storage\\app/public', + ), + ), + 'fortify' => + array ( + 'guard' => 'web', + 'middleware' => + array ( + 0 => 'web', + ), + 'auth_middleware' => 'auth', + 'passwords' => 'users', + 'username' => 'email', + 'email' => 'email', + 'views' => true, + 'home' => '/', + 'prefix' => '', + 'domain' => NULL, + 'limiters' => + array ( + 'login' => 'login', + 'two-factor' => 'two-factor', + ), + 'redirects' => + array ( + 'login' => NULL, + 'logout' => NULL, + 'password-confirmation' => NULL, + 'register' => NULL, + 'email-verification' => NULL, + 'password-reset' => NULL, + ), + 'features' => + array ( + 0 => 'registration', + 1 => 'update-passwords', + ), + ), + 'googlerecaptchav3' => + array ( + 'request_method' => 'curl', + 'is_service_enabled' => true, + 'host_name' => '', + 'secret_key' => '', + 'site_key' => '', + 'inline' => false, + 'background_badge_display' => true, + 'background_mode' => false, + 'is_score_enabled' => false, + 'setting' => + array ( + 0 => + array ( + 'action' => 'create_request', + 'threshold' => 0, + 'score_comparision' => false, + ), + ), + 'skip_ips' => + array ( + ), + 'options' => + array ( + ), + 'api_js_url' => 'https://www.google.com/recaptcha/api.js', + 'site_verify_url' => 'https://www.google.com/recaptcha/api/siteverify', + 'language' => 'en', + ), + 'gravatar' => + array ( + 'default' => + array ( + 'size' => 80, + 'fallback' => 'mp', + 'secure' => false, + 'maximumRating' => 'g', + 'forceDefault' => false, + 'forceExtension' => 'jpg', + ), + ), + 'hashids' => + array ( + 'default' => 'main', + 'connections' => + array ( + 'main' => + array ( + 'salt' => 'exchange', + 'length' => '16', + 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890', + ), + ), + ), + 'hashing' => + array ( + 'driver' => 'bcrypt', + 'bcrypt' => + array ( + 'rounds' => 10, + ), + 'argon' => + array ( + 'memory' => 1024, + 'threads' => 2, + 'time' => 2, + ), + ), + 'jetstream' => + array ( + 'stack' => 'inertia', + 'middleware' => + array ( + 0 => 'web', + ), + 'features' => + array ( + 0 => 'account-deletion', + ), + 'profile_photo_disk' => 'public', + ), + 'logging' => + array ( + 'default' => 'stack', + 'channels' => + array ( + 'stack' => + array ( + 'driver' => 'stack', + 'channels' => + array ( + 0 => 'single', + ), + 'ignore_exceptions' => false, + ), + 'single' => + array ( + 'driver' => 'single', + 'path' => 'C:\\xampp2\\htdocs\\exchange\\storage\\logs/laravel.log', + 'level' => 'debug', + ), + 'daily' => + array ( + 'driver' => 'daily', + 'path' => 'C:\\xampp2\\htdocs\\exchange\\storage\\logs/laravel.log', + 'level' => 'debug', + 'days' => 14, + ), + 'slack' => + array ( + 'driver' => 'slack', + 'url' => NULL, + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => 'critical', + ), + 'papertrail' => + array ( + 'driver' => 'monolog', + 'level' => 'debug', + 'handler' => 'Monolog\\Handler\\SyslogUdpHandler', + 'handler_with' => + array ( + 'host' => NULL, + 'port' => NULL, + ), + ), + 'stderr' => + array ( + 'driver' => 'monolog', + 'level' => 'debug', + 'handler' => 'Monolog\\Handler\\StreamHandler', + 'formatter' => NULL, + 'with' => + array ( + 'stream' => 'php://stderr', + ), + ), + 'syslog' => + array ( + 'driver' => 'syslog', + 'level' => 'debug', + ), + 'errorlog' => + array ( + 'driver' => 'errorlog', + 'level' => 'debug', + ), + 'null' => + array ( + 'driver' => 'monolog', + 'handler' => 'Monolog\\Handler\\NullHandler', + ), + 'emergency' => + array ( + 'path' => 'C:\\xampp2\\htdocs\\exchange\\storage\\logs/laravel.log', + ), + ), + ), + 'mail' => + array ( + 'default' => 'smtp', + 'mailers' => + array ( + 'smtp' => + array ( + 'transport' => 'smtp', + 'host' => 'smtp.mailtrap.io', + 'port' => '2525', + 'encryption' => NULL, + 'username' => NULL, + 'password' => NULL, + 'timeout' => NULL, + 'auth_mode' => NULL, + ), + 'ses' => + array ( + 'transport' => 'ses', + ), + 'mailgun' => + array ( + 'transport' => 'mailgun', + ), + 'postmark' => + array ( + 'transport' => 'postmark', + ), + 'sendmail' => + array ( + 'transport' => 'sendmail', + 'path' => '/usr/sbin/sendmail -bs', + ), + 'log' => + array ( + 'transport' => 'log', + 'channel' => NULL, + ), + 'array' => + array ( + 'transport' => 'array', + ), + ), + 'from' => + array ( + 'address' => NULL, + 'name' => 'Laravel', + ), + 'markdown' => + array ( + 'theme' => 'default', + 'paths' => + array ( + 0 => 'C:\\xampp2\\htdocs\\exchange\\resources\\views/vendor/mail', + ), + ), + ), + 'queue' => + array ( + 'default' => 'sync', + 'connections' => + array ( + 'sync' => + array ( + 'driver' => 'sync', + ), + 'database' => + array ( + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ), + 'beanstalkd' => + array ( + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ), + 'sqs' => + array ( + 'driver' => 'sqs', + 'key' => '', + 'secret' => '', + 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', + 'queue' => 'default', + 'suffix' => NULL, + 'region' => 'us-east-1', + 'after_commit' => false, + ), + 'redis' => + array ( + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => NULL, + 'after_commit' => false, + ), + ), + 'failed' => + array ( + 'driver' => 'database-uuids', + 'database' => 'mysql', + 'table' => 'failed_jobs', + ), + ), + 'sanctum' => + array ( + 'stateful' => + array ( + 0 => 'localhost', + 1 => 'localhost:3000', + 2 => '127.0.0.1', + 3 => '127.0.0.1:8000', + 4 => '::1', + 5 => 'localhost', + ), + 'guard' => + array ( + 0 => 'web', + ), + 'expiration' => NULL, + 'middleware' => + array ( + 'verify_csrf_token' => 'App\\Http\\Middleware\\VerifyCsrfToken', + 'encrypt_cookies' => 'App\\Http\\Middleware\\EncryptCookies', + ), + ), + 'scout' => + array ( + 'driver' => 'algolia', + 'prefix' => '', + 'queue' => false, + 'after_commit' => false, + 'chunk' => + array ( + 'searchable' => 500, + 'unsearchable' => 500, + ), + 'soft_delete' => false, + 'identify' => false, + 'algolia' => + array ( + 'id' => '', + 'secret' => '', + ), + 'meilisearch' => + array ( + 'host' => 'http://localhost:7700', + 'key' => NULL, + ), + ), + 'services' => + array ( + 'mailgun' => + array ( + 'domain' => NULL, + 'secret' => NULL, + 'endpoint' => 'api.mailgun.net', + ), + 'postmark' => + array ( + 'token' => NULL, + ), + 'ses' => + array ( + 'key' => '', + 'secret' => '', + 'region' => 'us-east-1', + ), + ), + 'session' => + array ( + 'driver' => 'file', + 'lifetime' => '120', + 'expire_on_close' => false, + 'encrypt' => false, + 'files' => 'C:\\xampp2\\htdocs\\exchange\\storage\\framework/sessions', + 'connection' => NULL, + 'table' => 'sessions', + 'store' => NULL, + 'lottery' => + array ( + 0 => 2, + 1 => 100, + ), + 'cookie' => 'laravel_session', + 'path' => '/', + 'domain' => NULL, + 'secure' => false, + 'http_only' => true, + 'same_site' => 'lax', + ), + 'translatable' => + array ( + 'fallback_locale' => 'tm', + 'fallback_any' => false, + ), + 'view' => + array ( + 'paths' => + array ( + 0 => 'C:\\xampp2\\htdocs\\exchange\\resources\\views', + ), + 'compiled' => 'C:\\xampp2\\htdocs\\exchange\\storage\\framework\\views', + ), + 'flare' => + array ( + 'key' => NULL, + 'reporting' => + array ( + 'anonymize_ips' => true, + 'collect_git_information' => false, + 'report_queries' => true, + 'maximum_number_of_collected_queries' => 200, + 'report_query_bindings' => true, + 'report_view_data' => true, + 'grouping_type' => NULL, + 'report_logs' => true, + 'maximum_number_of_collected_logs' => 200, + 'censor_request_body_fields' => + array ( + 0 => 'password', + ), + ), + 'send_logs_as_events' => true, + 'censor_request_body_fields' => + array ( + 0 => 'password', + ), + ), + 'ignition' => + array ( + 'editor' => 'phpstorm', + 'theme' => 'light', + 'enable_share_button' => true, + 'register_commands' => false, + 'ignored_solution_providers' => + array ( + 0 => 'Facade\\Ignition\\SolutionProviders\\MissingPackageSolutionProvider', + ), + 'enable_runnable_solutions' => NULL, + 'remote_sites_path' => '', + 'local_sites_path' => '', + 'housekeeping_endpoint_prefix' => '_ignition', + ), + 'inertia' => + array ( + 'testing' => + array ( + 'ensure_pages_exist' => true, + 'page_paths' => + array ( + 0 => 'C:\\xampp2\\htdocs\\exchange\\resources\\js/Pages', + ), + 'page_extensions' => + array ( + 0 => 'js', + 1 => 'jsx', + 2 => 'svelte', + 3 => 'ts', + 4 => 'vue', + ), + ), + ), + 'image' => + array ( + 'driver' => 'gd', + ), + 'prologue' => + array ( + 'alerts' => + array ( + 'levels' => + array ( + 0 => 'info', + 1 => 'warning', + 2 => 'error', + 3 => 'success', + ), + 'session_key' => 'alert_messages', + ), + ), + 'trustedproxy' => + array ( + 'proxies' => NULL, + 'headers' => 30, + ), + 'tinker' => + array ( + 'commands' => + array ( + ), + 'alias' => + array ( + ), + 'dont_alias' => + array ( + 0 => 'App\\Nova', + ), + ), +); diff --git a/bootstrap/cache/routes-v7.php b/bootstrap/cache/routes-v7.php new file mode 100644 index 0000000..debb8dc --- /dev/null +++ b/bootstrap/cache/routes-v7.php @@ -0,0 +1,7233 @@ +setCompiledRoutes( + array ( + 'compiled' => + array ( + 0 => false, + 1 => + array ( + '/admin/login' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.login', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::K2yiXW8nFC5dDG4g', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/logout' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.logout', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::9qN84iA3bl3wfGuW', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/register' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.register', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::kyBsuc3leIMlzbjs', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/password/reset' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.password.reset', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::lLgwp1l289qqXvYS', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/password/email' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.password.email', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/dashboard' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.dashboard', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/edit-account-info' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.account.info', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'backpack.account.info.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/change-password' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.account.password', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/category' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'category.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/category/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/category/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/trading' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'trading.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/trading/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/trading/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/news' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'news.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/news/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/news/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/document' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'document.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/document/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/document/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/selected-trading' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'selected-trading.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/selected-trading/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/selected-trading/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/tarif' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.index', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'tarif.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/tarif/search' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.search', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/admin/tarif/create' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.create', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/login' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'login', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::qVUEsTdvsY60MnSq', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/logout' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'logout', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/register' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'register', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'generated::OaVNZyoFfDtci2GJ', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/password' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'user-password.update', + ), + 1 => NULL, + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/confirm-password' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::4ALzfQXr9PnAKTo4', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'password.confirm', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/confirmed-password-status' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'password.confirmation', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/profile' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'profile.show', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/other-browser-sessions' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'other-browser-sessions.destroy', + ), + 1 => NULL, + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user/profile-photo' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'current-user-photo.destroy', + ), + 1 => NULL, + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/user' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'current-user.destroy', + ), + 1 => NULL, + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/sanctum/csrf-cookie' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::Gblc5dgj27qGAfTt', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/imports' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'api.imports', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/exports' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'api.exports', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/groups' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::4JAW6STXm2NDtKLn', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/categories' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::p3UQ90VYNmMCmsdc', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/other-filters' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::nKKunWgQU9RefmX2', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/tradings' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::18TjUtCYYUpsSyz7', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/news' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::kf0Fh0meSF4fly09', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/documents' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::dZ0KSqqczEhv3wc2', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/api/tariffs' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::Dg5kLMM2xGjKvrcE', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/imports' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'imports', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/tradings' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tradings', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'exports', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/requests' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'requests.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'requests', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/imports/import' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'imports.import', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/exports/import' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'exports.import', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/tradings/import' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tradings.import', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/import-status' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'import-status', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/lines' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'lines', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'lines.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/settings' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'settings', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'settings.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/categories' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'categories', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'categories.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/groups' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'groups', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'groups.store', + ), + 1 => NULL, + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/upgrade' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::sPELQ1JC1l8oHIQC', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + '/logout-confirm' => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'logout_confirm', + ), + 1 => NULL, + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + ), + 2 => + array ( + 0 => '{^(?|/a(?|dmin/(?|password/reset/([^/]++)(*:43)|category/(?|([^/]++)(?|/(?|details(*:84)|edit(*:95)|show(*:106))|(*:115))|reorder(?|(*:134)))|t(?|rading/([^/]++)(?|/(?|details(*:177)|edit(*:189)|show(*:201))|(*:210))|arif/(?|([^/]++)(?|/(?|details(*:249)|edit(*:261)|show(*:273))|(*:282))|reorder(?|(*:301))))|news/([^/]++)(?|/(?|details(*:339)|edit(*:351)|show(*:363))|(*:372))|document/(?|([^/]++)(?|/(?|details(*:415)|edit(*:427)|show(*:439))|(*:448))|reorder(?|(*:467)))|selected\\-trading/([^/]++)(?|/(?|details(*:517)|edit(*:529)|show(*:541))|(*:550)))|pi/categories/([^/]++)/tradings(*:591))|/download/([^/]++)(*:618)|/l(?|ang/([^/]++)(*:643)|ines/([^/]++)(*:664))|/requests/([^/]++)(*:691)|/categories/([^/]++)(*:719)|/groups/([^/]++)(?|(*:746)))/?$}sDu', + ), + 3 => + array ( + 43 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'backpack.auth.password.reset.token', + ), + 1 => + array ( + 0 => 'token', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 84 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 95 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 106 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 115 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'category.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 134 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'category.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'category.save.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 177 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 189 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 201 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 210 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'trading.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'trading.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 249 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 261 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 273 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 282 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'tarif.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 301 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'tarif.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'tarif.save.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 339 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 351 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 363 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 372 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'news.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'news.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 415 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 427 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 439 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 448 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'document.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 467 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'document.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'document.save.reorder', + ), + 1 => + array ( + ), + 2 => + array ( + 'POST' => 0, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 517 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.showDetailsRow', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 529 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.edit', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 541 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.show', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 550 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'selected-trading.update', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'selected-trading.destroy', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 591 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'generated::fYHFHHtzEaoHhc6o', + ), + 1 => + array ( + 0 => 'id', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => false, + 6 => NULL, + ), + ), + 618 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'download', + ), + 1 => + array ( + 0 => 'group', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 643 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'lang', + ), + 1 => + array ( + 0 => 'lang', + ), + 2 => + array ( + 'GET' => 0, + 'HEAD' => 1, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 664 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'lines.destroy', + ), + 1 => + array ( + 0 => 'export', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 691 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'requests.destroy', + ), + 1 => + array ( + 0 => 'request', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 719 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'categories.destroy', + ), + 1 => + array ( + 0 => 'category', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + ), + 746 => + array ( + 0 => + array ( + 0 => + array ( + '_route' => 'groups.update', + ), + 1 => + array ( + 0 => 'group', + ), + 2 => + array ( + 'PUT' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 1 => + array ( + 0 => + array ( + '_route' => 'groups.destroy', + ), + 1 => + array ( + 0 => 'group', + ), + 2 => + array ( + 'DELETE' => 0, + ), + 3 => NULL, + 4 => false, + 5 => true, + 6 => NULL, + ), + 2 => + array ( + 0 => NULL, + 1 => NULL, + 2 => NULL, + 3 => NULL, + 4 => false, + 5 => false, + 6 => 0, + ), + ), + ), + 4 => NULL, + ), + 'attributes' => + array ( + 'backpack.auth.login' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/login', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@showLoginForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@showLoginForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.login', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::K2yiXW8nFC5dDG4g' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/login', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@login', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@login', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'generated::K2yiXW8nFC5dDG4g', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.auth.logout' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/logout', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.logout', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::9qN84iA3bl3wfGuW' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/logout', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'generated::9qN84iA3bl3wfGuW', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.auth.register' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/register', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@showRegistrationForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@showRegistrationForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.register', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::kyBsuc3leIMlzbjs' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/register', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@register', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@register', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'generated::kyBsuc3leIMlzbjs', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.auth.password.reset' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/password/reset', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@showLinkRequestForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@showLinkRequestForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.password.reset', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::lLgwp1l289qqXvYS' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/password/reset', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@reset', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@reset', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'generated::lLgwp1l289qqXvYS', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.auth.password.reset.token' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/password/reset/{token}', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@showResetForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@showResetForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.password.reset.token', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.auth.password.email' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/password/email', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'backpack.throttle.password.recovery:3,10', + ), + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@sendResetLinkEmail', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@sendResetLinkEmail', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.auth.password.email', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.dashboard' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/dashboard', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@dashboard', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@dashboard', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.dashboard', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@redirect', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@redirect', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.account.info' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/edit-account-info', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@getAccountInfoForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@getAccountInfoForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.account.info', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.account.info.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/edit-account-info', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postAccountInfoForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postAccountInfoForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.account.info.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'backpack.account.password' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/change-password', + 'action' => + array ( + 'middleware' => 'web', + 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postChangePasswordForm', + 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postChangePasswordForm', + 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', + 'prefix' => 'admin', + 'where' => + array ( + ), + 'as' => 'backpack.account.password', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/category/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/category', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/category/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/category/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.reorder' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/category/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@reorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@reorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'category.save.reorder' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/category/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'category.save.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@saveReorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@saveReorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/trading', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/trading/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/trading/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/trading/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/trading', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/trading/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/trading/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/trading/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'trading.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/trading/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'trading.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/news', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/news/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/news/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/news/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/news', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/news/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/news/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/news/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'news.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/news/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'news.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\NewsCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/document/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/document', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/document/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/document/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.reorder' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/document/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@reorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@reorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'document.save.reorder' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/document/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'document.save.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@saveReorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\DocumentCrudController@saveReorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/selected-trading', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/selected-trading/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/selected-trading/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/selected-trading/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/selected-trading', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/selected-trading/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/selected-trading/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/selected-trading/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'selected-trading.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/selected-trading/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'selected-trading.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\SelectedTradingCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.index' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.index', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@index', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@index', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.search' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/tarif/search', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.search', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@search', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@search', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.showDetailsRow' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif/{id}/details', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.showDetailsRow', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@showDetailsRow', + 'operation' => 'list', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@showDetailsRow', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.create' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif/create', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.create', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@create', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@create', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/tarif', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.store', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@store', + 'operation' => 'create', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@store', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.edit' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif/{id}/edit', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.edit', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@edit', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@edit', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'admin/tarif/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.update', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@update', + 'operation' => 'update', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@update', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'admin/tarif/{id}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.destroy', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@destroy', + 'operation' => 'delete', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@destroy', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif/{id}/show', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.show', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@show', + 'operation' => 'show', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@show', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.reorder' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'admin/tarif/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@reorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@reorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tarif.save.reorder' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'admin/tarif/reorder', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'admin', + ), + 'as' => 'tarif.save.reorder', + 'uses' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@saveReorder', + 'operation' => 'reorder', + 'controller' => 'App\\Http\\Controllers\\Admin\\TarifCrudController@saveReorder', + 'namespace' => 'App\\Http\\Controllers\\Admin', + 'prefix' => 'admin', + 'where' => + array ( + ), + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'login' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'login', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'guest:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@create', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@create', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'login', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::qVUEsTdvsY60MnSq' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'login', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'guest:web', + 2 => 'throttle:login', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@store', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@store', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'generated::qVUEsTdvsY60MnSq', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'logout' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'logout', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@destroy', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@destroy', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'logout', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'register' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'register', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'guest:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@create', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@create', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'register', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::OaVNZyoFfDtci2GJ' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'register', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'guest:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@store', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@store', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'generated::OaVNZyoFfDtci2GJ', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'user-password.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'user/password', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\PasswordController@update', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\PasswordController@update', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'user-password.update', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::4ALzfQXr9PnAKTo4' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'user/confirm-password', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@show', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@show', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'generated::4ALzfQXr9PnAKTo4', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'password.confirmation' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'user/confirmed-password-status', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmedPasswordStatusController@show', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmedPasswordStatusController@show', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'password.confirmation', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'password.confirm' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'user/confirm-password', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:web', + ), + 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@store', + 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@store', + 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'password.confirm', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'profile.show' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'user/profile', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth', + ), + 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\UserProfileController@show', + 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\UserProfileController@show', + 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'profile.show', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'other-browser-sessions.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'user/other-browser-sessions', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth', + ), + 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\OtherBrowserSessionsController@destroy', + 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\OtherBrowserSessionsController@destroy', + 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'other-browser-sessions.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'current-user-photo.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'user/profile-photo', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth', + ), + 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\ProfilePhotoController@destroy', + 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\ProfilePhotoController@destroy', + 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'current-user-photo.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'current-user.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'user', + 'action' => + array ( + 'domain' => NULL, + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth', + ), + 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\CurrentUserController@destroy', + 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\CurrentUserController@destroy', + 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'current-user.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::Gblc5dgj27qGAfTt' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'sanctum/csrf-cookie', + 'action' => + array ( + 'uses' => 'Laravel\\Sanctum\\Http\\Controllers\\CsrfCookieController@show', + 'controller' => 'Laravel\\Sanctum\\Http\\Controllers\\CsrfCookieController@show', + 'namespace' => NULL, + 'prefix' => 'sanctum', + 'where' => + array ( + ), + 'middleware' => + array ( + 0 => 'web', + ), + 'as' => 'generated::Gblc5dgj27qGAfTt', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'api.imports' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/imports', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\ImportController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\ImportController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'api.imports', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'api.exports' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/exports', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\ExportController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\ExportController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'api.exports', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::4JAW6STXm2NDtKLn' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/groups', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\FiltersController@groups', + 'controller' => 'App\\Http\\Controllers\\Api\\FiltersController@groups', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::4JAW6STXm2NDtKLn', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::p3UQ90VYNmMCmsdc' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/categories', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\CategoryController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\CategoryController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::p3UQ90VYNmMCmsdc', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::nKKunWgQU9RefmX2' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/other-filters', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\FiltersController@otherFilters', + 'controller' => 'App\\Http\\Controllers\\Api\\FiltersController@otherFilters', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::nKKunWgQU9RefmX2', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::18TjUtCYYUpsSyz7' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/tradings', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\TradingsController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\TradingsController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::18TjUtCYYUpsSyz7', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::fYHFHHtzEaoHhc6o' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/categories/{id}/tradings', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\TradingsController@selectedTradings', + 'controller' => 'App\\Http\\Controllers\\Api\\TradingsController@selectedTradings', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::fYHFHHtzEaoHhc6o', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::kf0Fh0meSF4fly09' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/news', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\NewsController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\NewsController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::kf0Fh0meSF4fly09', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::dZ0KSqqczEhv3wc2' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/documents', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\DocumentController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\DocumentController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::dZ0KSqqczEhv3wc2', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::Dg5kLMM2xGjKvrcE' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'api/tariffs', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'api', + ), + 'uses' => 'App\\Http\\Controllers\\Api\\TarifController@index', + 'controller' => 'App\\Http\\Controllers\\Api\\TarifController@index', + 'namespace' => NULL, + 'prefix' => 'api', + 'where' => + array ( + ), + 'as' => 'generated::Dg5kLMM2xGjKvrcE', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'imports' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'imports', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\ImportController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\ImportController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'imports', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tradings' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'tradings', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\TradingController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\TradingController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'tradings', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'exports' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => '/', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'exports', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'download' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'download/{group}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@download', + 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@download', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'download', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'requests.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'requests', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@store', + 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@store', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'requests.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'lang' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'lang/{lang}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'check_october_session', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@lang', + 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@lang', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'lang', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'imports.import' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'imports/import', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\ImportController@import', + 'controller' => 'App\\Http\\Controllers\\Web\\ImportController@import', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'imports.import', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'exports.import' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'exports/import', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@import', + 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@import', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'exports.import', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'tradings.import' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'tradings/import', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\TradingController@import', + 'controller' => 'App\\Http\\Controllers\\Web\\TradingController@import', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'tradings.import', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'import-status' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'import-status', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@status', + 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@status', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'import-status', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'lines' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'lines', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\LineController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\LineController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'lines', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'lines.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'lines', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\LineController@store', + 'controller' => 'App\\Http\\Controllers\\Web\\LineController@store', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'lines.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'lines.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'lines/{export}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\LineController@destroy', + 'controller' => 'App\\Http\\Controllers\\Web\\LineController@destroy', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'lines.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'requests' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'requests', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'requests', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'requests.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'requests/{request}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@destroy', + 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@destroy', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'requests.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'settings' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'settings', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\SettingController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\SettingController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'settings', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'settings.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'settings', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\SettingController@store', + 'controller' => 'App\\Http\\Controllers\\Web\\SettingController@store', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'settings.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'categories' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'categories', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'categories', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'categories.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'categories', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@store', + 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@store', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'categories.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'categories.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'categories/{category}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@destroy', + 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@destroy', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'categories.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'groups' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'groups', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@index', + 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@index', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'groups', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'groups.store' => + array ( + 'methods' => + array ( + 0 => 'POST', + ), + 'uri' => 'groups', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@store', + 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@store', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'groups.store', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'groups.update' => + array ( + 'methods' => + array ( + 0 => 'PUT', + ), + 'uri' => 'groups/{group}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@update', + 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@update', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'groups.update', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'groups.destroy' => + array ( + 'methods' => + array ( + 0 => 'DELETE', + ), + 'uri' => 'groups/{group}', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@destroy', + 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@destroy', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'groups.destroy', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'generated::sPELQ1JC1l8oHIQC' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'upgrade', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@upgrade', + 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@upgrade', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'generated::sPELQ1JC1l8oHIQC', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + 'logout_confirm' => + array ( + 'methods' => + array ( + 0 => 'GET', + 1 => 'HEAD', + ), + 'uri' => 'logout-confirm', + 'action' => + array ( + 'middleware' => + array ( + 0 => 'web', + 1 => 'auth:sanctum', + ), + 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@logoutConfirm', + 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@logoutConfirm', + 'namespace' => NULL, + 'prefix' => '', + 'where' => + array ( + ), + 'as' => 'logout_confirm', + ), + 'fallback' => false, + 'defaults' => + array ( + ), + 'wheres' => + array ( + ), + 'bindingFields' => + array ( + ), + 'lockSeconds' => NULL, + 'waitSeconds' => NULL, + 'withTrashed' => false, + ), + ), +) +); diff --git a/config/backpack/base.php b/config/backpack/base.php index 0c4f6ae..05406e4 100644 --- a/config/backpack/base.php +++ b/config/backpack/base.php @@ -119,13 +119,13 @@ return [ // change background color with bg-dark, bg-primary, bg-secondary, bg-danger, bg-warning, bg-success, bg-info, bg-blue, bg-light-blue, bg-indigo, bg-purple, bg-pink, bg-red, bg-orange, bg-yellow, bg-green, bg-teal, bg-cyan, bg-white // Developer or company name. Shown in footer. - 'developer_name' => 'Cristian Tabacitu', + 'developer_name' => 'TPS', // Developer website. Link in footer. Type false if you want to hide it. 'developer_link' => 'http://tabacitu.ro', // Show powered by Laravel Backpack in the footer? true/false - 'show_powered_by' => true, + 'show_powered_by' => false, // ------- // SCRIPTS diff --git a/database/factories/TarifFactory.php b/database/factories/TarifFactory.php new file mode 100644 index 0000000..656b0f7 --- /dev/null +++ b/database/factories/TarifFactory.php @@ -0,0 +1,20 @@ +id(); + $table->string('type'); + $table->text('title'); + $table->string('prices'); + $table->integer('parent_id')->default(0)->nullable(); + $table->integer('lft')->default(0); + $table->integer('rgt')->default(0); + $table->integer('depth')->default(0); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('tarifs'); + } +} diff --git a/database/seeders/TarifSeeder.php b/database/seeders/TarifSeeder.php new file mode 100644 index 0000000..ce587a9 --- /dev/null +++ b/database/seeders/TarifSeeder.php @@ -0,0 +1,18 @@ + Categories + - \ No newline at end of file + \ No newline at end of file diff --git a/routes/api.php b/routes/api.php index 3149604..0ca51a3 100644 --- a/routes/api.php +++ b/routes/api.php @@ -10,6 +10,7 @@ use App\Http\Controllers\Api\NewsController; use App\Http\Controllers\Api\CategoryController; use App\Http\Controllers\Api\DocumentController; use App\Http\Controllers\Api\SelectedTradingController; +use App\Http\Controllers\Api\TarifController; /* |-------------------------------------------------------------------------- @@ -34,3 +35,4 @@ Route::get('tradings', [TradingsController::class, 'index']); Route::get('categories/{id}/tradings', [TradingsController::class, 'selectedTradings']); Route::get('news', [NewsController::class, 'index']); Route::get('documents', [DocumentController::class, 'index']); +Route::get('tariffs', [TarifController::class, 'index']); diff --git a/routes/backpack/custom.php b/routes/backpack/custom.php index 07103b7..87b6106 100644 --- a/routes/backpack/custom.php +++ b/routes/backpack/custom.php @@ -21,4 +21,6 @@ Route::group([ Route::crud('news', 'NewsCrudController'); Route::crud('document', 'DocumentCrudController'); Route::crud('selected-trading', 'SelectedTradingCrudController'); + + Route::crud('tarif', 'TarifCrudController'); }); // this should be the absolute last line of this file \ No newline at end of file