MIF_E31210194/bootstrap/cache/config.php

1574 lines
40 KiB
PHP

<?php return array (
'app' =>
array (
'name' => 'Laravel',
'env' => 'local',
'debug' => true,
'url' => 'http://localhost',
'asset_url' => NULL,
'timezone' => 'Asia/Jakarta',
'locale' => 'en',
'fallback_locale' => 'en',
'faker_locale' => 'en_US',
'key' => 'base64:u22Aaio6kG74akCVWIKP0GP5tL9PQyqIrURDZ5w0cEY=',
'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 => 'Collective\\Html\\HtmlServiceProvider',
27 => 'Yajra\\DataTables\\DataTablesServiceProvider',
28 => 'Mews\\Purifier\\PurifierServiceProvider',
29 => 'Darryldecode\\Cart\\CartServiceProvider',
),
'aliases' =>
array (
'DataTables' => 'Yajra\\DataTables\\Facades\\DataTables',
'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',
'Js' => 'Illuminate\\Support\\Js',
'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',
'RateLimiter' => 'Illuminate\\Support\\Facades\\RateLimiter',
'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',
'Form' => 'Collective\\Html\\FormFacade',
'Html' => 'Collective\\Html\\HtmlFacade',
'Purifier' => 'Mews\\Purifier\\Facades\\Purifier',
'Cart' => 'Darryldecode\\Cart\\Facades\\CartFacade',
),
),
'auth' =>
array (
'defaults' =>
array (
'guard' => 'web',
'passwords' => 'users',
),
'guards' =>
array (
'web' =>
array (
'driver' => 'session',
'provider' => 'users',
),
'sanctum' =>
array (
'driver' => 'sanctum',
'provider' => NULL,
),
),
'providers' =>
array (
'users' =>
array (
'driver' => 'eloquent',
'model' => 'App\\Models\\User',
),
),
'passwords' =>
array (
'users' =>
array (
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
'throttle' => 60,
),
),
'password_timeout' => 10800,
),
'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:\\laragon\\www\\PROJEK TA\\fchain\\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' => 'cd5094c0f1086272cf69ed521c5ec316',
'secret' => 'bd99a32384636d52baa21504faafe0d60c5a4a6449131bccb7ba6468d7010021',
'region' => 'auto',
'table' => 'cache',
'endpoint' => NULL,
),
'octane' =>
array (
'driver' => 'octane',
),
),
'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' => 'forward_chaining',
'prefix' => '',
'foreign_key_constraints' => true,
),
'mysql' =>
array (
'driver' => 'mysql',
'url' => NULL,
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'forward_chaining',
'username' => 'root',
'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' => 'forward_chaining',
'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' => 'forward_chaining',
'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',
),
),
),
'filesystems' =>
array (
'default' => 'local',
'disks' =>
array (
'local' =>
array (
'driver' => 'local',
'root' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\app',
),
'public' =>
array (
'driver' => 'local',
'root' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\app/public',
'url' => 'http://localhost/storage',
'visibility' => 'public',
),
's3' =>
array (
'driver' => 's3',
'key' => 'cd5094c0f1086272cf69ed521c5ec316',
'secret' => 'bd99a32384636d52baa21504faafe0d60c5a4a6449131bccb7ba6468d7010021',
'region' => 'auto',
'bucket' => 'cdn-progriva',
'url' => NULL,
'endpoint' => NULL,
'use_path_style_endpoint' => false,
),
),
'links' =>
array (
'C:\\laragon\\www\\PROJEK TA\\fchain\\public\\storage' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\app/public',
),
),
'hashing' =>
array (
'driver' => 'bcrypt',
'bcrypt' =>
array (
'rounds' => 10,
),
'argon' =>
array (
'memory' => 65536,
'threads' => 1,
'time' => 4,
),
),
'logging' =>
array (
'default' => 'stack',
'deprecations' => NULL,
'channels' =>
array (
'stack' =>
array (
'driver' => 'stack',
'channels' =>
array (
0 => 'single',
),
'ignore_exceptions' => false,
),
'single' =>
array (
'driver' => 'single',
'path' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\logs/laravel.log',
'level' => 'debug',
),
'daily' =>
array (
'driver' => 'daily',
'path' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\logs/laravel.log',
'level' => 'debug',
'days' => 14,
),
'slack' =>
array (
'driver' => 'slack',
'url' => NULL,
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => 'debug',
),
'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:\\laragon\\www\\PROJEK TA\\fchain\\storage\\logs/laravel.log',
),
),
),
'mail' =>
array (
'default' => 'smtp',
'mailers' =>
array (
'smtp' =>
array (
'transport' => 'smtp',
'host' => 'smtp.mailgun.org',
'port' => 587,
'encryption' => 'tls',
'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 -t -i',
),
'log' =>
array (
'transport' => 'log',
'channel' => NULL,
),
'array' =>
array (
'transport' => 'array',
),
'failover' =>
array (
'transport' => 'failover',
'mailers' =>
array (
0 => 'smtp',
1 => 'log',
),
),
),
'from' =>
array (
'address' => 'hello@example.com',
'name' => 'Example',
),
'markdown' =>
array (
'theme' => 'default',
'paths' =>
array (
0 => 'C:\\laragon\\www\\PROJEK TA\\fchain\\resources\\views/vendor/mail',
),
),
),
'modules' =>
array (
'namespace' => 'Modules',
'stubs' =>
array (
'enabled' => false,
'path' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\vendor/nwidart/laravel-modules/src/Commands/stubs',
'files' =>
array (
'routes/web' => 'Routes/web.php',
'routes/api' => 'Routes/api.php',
'views/index' => 'Resources/views/index.blade.php',
'views/master' => 'Resources/views/layouts/master.blade.php',
'scaffold/config' => 'Config/config.php',
'composer' => 'composer.json',
'assets/js/app' => 'Resources/assets/js/app.js',
'assets/sass/app' => 'Resources/assets/sass/app.scss',
'webpack' => 'webpack.mix.js',
'package' => 'package.json',
),
'replacements' =>
array (
'routes/web' =>
array (
0 => 'LOWER_NAME',
1 => 'STUDLY_NAME',
),
'routes/api' =>
array (
0 => 'LOWER_NAME',
),
'webpack' =>
array (
0 => 'LOWER_NAME',
),
'json' =>
array (
0 => 'LOWER_NAME',
1 => 'STUDLY_NAME',
2 => 'MODULE_NAMESPACE',
3 => 'PROVIDER_NAMESPACE',
),
'views/index' =>
array (
0 => 'LOWER_NAME',
),
'views/master' =>
array (
0 => 'LOWER_NAME',
1 => 'STUDLY_NAME',
),
'scaffold/config' =>
array (
0 => 'STUDLY_NAME',
),
'composer' =>
array (
0 => 'LOWER_NAME',
1 => 'STUDLY_NAME',
2 => 'VENDOR',
3 => 'AUTHOR_NAME',
4 => 'AUTHOR_EMAIL',
5 => 'MODULE_NAMESPACE',
6 => 'PROVIDER_NAMESPACE',
),
),
'gitkeep' => true,
),
'paths' =>
array (
'modules' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\Modules',
'assets' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\public\\modules',
'migration' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\database/migrations',
'generator' =>
array (
'config' =>
array (
'path' => 'Config',
'generate' => true,
),
'command' =>
array (
'path' => 'Console',
'generate' => true,
),
'migration' =>
array (
'path' => 'Database/Migrations',
'generate' => true,
),
'seeder' =>
array (
'path' => 'Database/Seeders',
'generate' => true,
),
'factory' =>
array (
'path' => 'Database/factories',
'generate' => true,
),
'model' =>
array (
'path' => 'Entities',
'generate' => true,
),
'routes' =>
array (
'path' => 'Routes',
'generate' => true,
),
'controller' =>
array (
'path' => 'Http/Controllers',
'generate' => true,
),
'filter' =>
array (
'path' => 'Http/Middleware',
'generate' => true,
),
'request' =>
array (
'path' => 'Http/Requests',
'generate' => true,
),
'provider' =>
array (
'path' => 'Providers',
'generate' => true,
),
'assets' =>
array (
'path' => 'Resources/assets',
'generate' => true,
),
'lang' =>
array (
'path' => 'Resources/lang',
'generate' => true,
),
'views' =>
array (
'path' => 'Resources/views',
'generate' => true,
),
'test' =>
array (
'path' => 'Tests/Unit',
'generate' => true,
),
'test-feature' =>
array (
'path' => 'Tests/Feature',
'generate' => true,
),
'repository' =>
array (
'path' => 'Repositories',
'generate' => false,
),
'event' =>
array (
'path' => 'Events',
'generate' => false,
),
'listener' =>
array (
'path' => 'Listeners',
'generate' => false,
),
'policies' =>
array (
'path' => 'Policies',
'generate' => false,
),
'rules' =>
array (
'path' => 'Rules',
'generate' => false,
),
'jobs' =>
array (
'path' => 'Jobs',
'generate' => false,
),
'emails' =>
array (
'path' => 'Emails',
'generate' => false,
),
'notifications' =>
array (
'path' => 'Notifications',
'generate' => false,
),
'resource' =>
array (
'path' => 'Transformers',
'generate' => false,
),
'component-view' =>
array (
'path' => 'Resources/views/components',
'generate' => false,
),
'component-class' =>
array (
'path' => 'View/Components',
'generate' => false,
),
),
),
'commands' =>
array (
0 => 'Nwidart\\Modules\\Commands\\CommandMakeCommand',
1 => 'Nwidart\\Modules\\Commands\\ComponentClassMakeCommand',
2 => 'Nwidart\\Modules\\Commands\\ComponentViewMakeCommand',
3 => 'Nwidart\\Modules\\Commands\\ControllerMakeCommand',
4 => 'Nwidart\\Modules\\Commands\\DisableCommand',
5 => 'Nwidart\\Modules\\Commands\\DumpCommand',
6 => 'Nwidart\\Modules\\Commands\\EnableCommand',
7 => 'Nwidart\\Modules\\Commands\\EventMakeCommand',
8 => 'Nwidart\\Modules\\Commands\\JobMakeCommand',
9 => 'Nwidart\\Modules\\Commands\\ListenerMakeCommand',
10 => 'Nwidart\\Modules\\Commands\\MailMakeCommand',
11 => 'Nwidart\\Modules\\Commands\\MiddlewareMakeCommand',
12 => 'Nwidart\\Modules\\Commands\\NotificationMakeCommand',
13 => 'Nwidart\\Modules\\Commands\\ProviderMakeCommand',
14 => 'Nwidart\\Modules\\Commands\\RouteProviderMakeCommand',
15 => 'Nwidart\\Modules\\Commands\\InstallCommand',
16 => 'Nwidart\\Modules\\Commands\\ListCommand',
17 => 'Nwidart\\Modules\\Commands\\ModuleDeleteCommand',
18 => 'Nwidart\\Modules\\Commands\\ModuleMakeCommand',
19 => 'Nwidart\\Modules\\Commands\\FactoryMakeCommand',
20 => 'Nwidart\\Modules\\Commands\\PolicyMakeCommand',
21 => 'Nwidart\\Modules\\Commands\\RequestMakeCommand',
22 => 'Nwidart\\Modules\\Commands\\RuleMakeCommand',
23 => 'Nwidart\\Modules\\Commands\\MigrateCommand',
24 => 'Nwidart\\Modules\\Commands\\MigrateRefreshCommand',
25 => 'Nwidart\\Modules\\Commands\\MigrateResetCommand',
26 => 'Nwidart\\Modules\\Commands\\MigrateRollbackCommand',
27 => 'Nwidart\\Modules\\Commands\\MigrateStatusCommand',
28 => 'Nwidart\\Modules\\Commands\\MigrationMakeCommand',
29 => 'Nwidart\\Modules\\Commands\\ModelMakeCommand',
30 => 'Nwidart\\Modules\\Commands\\PublishCommand',
31 => 'Nwidart\\Modules\\Commands\\PublishConfigurationCommand',
32 => 'Nwidart\\Modules\\Commands\\PublishMigrationCommand',
33 => 'Nwidart\\Modules\\Commands\\PublishTranslationCommand',
34 => 'Nwidart\\Modules\\Commands\\SeedCommand',
35 => 'Nwidart\\Modules\\Commands\\SeedMakeCommand',
36 => 'Nwidart\\Modules\\Commands\\SetupCommand',
37 => 'Nwidart\\Modules\\Commands\\UnUseCommand',
38 => 'Nwidart\\Modules\\Commands\\UpdateCommand',
39 => 'Nwidart\\Modules\\Commands\\UseCommand',
40 => 'Nwidart\\Modules\\Commands\\ResourceMakeCommand',
41 => 'Nwidart\\Modules\\Commands\\TestMakeCommand',
42 => 'Nwidart\\Modules\\Commands\\LaravelModulesV6Migrator',
43 => 'Nwidart\\Modules\\Commands\\ComponentClassMakeCommand',
44 => 'Nwidart\\Modules\\Commands\\ComponentViewMakeCommand',
),
'scan' =>
array (
'enabled' => false,
'paths' =>
array (
0 => 'C:\\laragon\\www\\PROJEK TA\\fchain\\vendor/*/*',
),
),
'composer' =>
array (
'vendor' => 'nwidart',
'author' =>
array (
'name' => 'Nicolas Widart',
'email' => 'n.widart@gmail.com',
),
'composer-output' => false,
),
'cache' =>
array (
'enabled' => false,
'key' => 'laravel-modules',
'lifetime' => 60,
),
'register' =>
array (
'translations' => true,
'files' => 'register',
),
'activators' =>
array (
'file' =>
array (
'class' => 'Nwidart\\Modules\\Activators\\FileActivator',
'statuses-file' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\modules_statuses.json',
'cache-key' => 'activator.installed',
'cache-lifetime' => 604800,
),
),
'activator' => 'file',
),
'purifier' =>
array (
'encoding' => 'UTF-8',
'finalize' => true,
'ignoreNonStrings' => false,
'cachePath' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\app/purifier',
'cacheFileMode' => 493,
'settings' =>
array (
'default' =>
array (
'HTML.Doctype' => 'HTML 4.01 Transitional',
'HTML.Allowed' => 'div,b,strong,i,em,u,a[href|title],ul,ol,li,p[style],br,span[style],img[width|height|alt|src]',
'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
'AutoFormat.AutoParagraph' => true,
'AutoFormat.RemoveEmpty' => true,
),
'test' =>
array (
'Attr.EnableID' => 'true',
),
'youtube' =>
array (
'HTML.SafeIframe' => 'true',
'URI.SafeIframeRegexp' => '%^(http://|https://|//)(www.youtube.com/embed/|player.vimeo.com/video/)%',
),
'custom_definition' =>
array (
'id' => 'html5-definitions',
'rev' => 1,
'debug' => false,
'elements' =>
array (
0 =>
array (
0 => 'section',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
1 =>
array (
0 => 'nav',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
2 =>
array (
0 => 'article',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
3 =>
array (
0 => 'aside',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
4 =>
array (
0 => 'header',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
5 =>
array (
0 => 'footer',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
6 =>
array (
0 => 'address',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
),
7 =>
array (
0 => 'hgroup',
1 => 'Block',
2 => 'Required: h1 | h2 | h3 | h4 | h5 | h6',
3 => 'Common',
),
8 =>
array (
0 => 'figure',
1 => 'Block',
2 => 'Optional: (figcaption, Flow) | (Flow, figcaption) | Flow',
3 => 'Common',
),
9 =>
array (
0 => 'figcaption',
1 => 'Inline',
2 => 'Flow',
3 => 'Common',
),
10 =>
array (
0 => 'video',
1 => 'Block',
2 => 'Optional: (source, Flow) | (Flow, source) | Flow',
3 => 'Common',
4 =>
array (
'src' => 'URI',
'type' => 'Text',
'width' => 'Length',
'height' => 'Length',
'poster' => 'URI',
'preload' => 'Enum#auto,metadata,none',
'controls' => 'Bool',
),
),
11 =>
array (
0 => 'source',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
4 =>
array (
'src' => 'URI',
'type' => 'Text',
),
),
12 =>
array (
0 => 's',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
13 =>
array (
0 => 'var',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
14 =>
array (
0 => 'sub',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
15 =>
array (
0 => 'sup',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
16 =>
array (
0 => 'mark',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
17 =>
array (
0 => 'wbr',
1 => 'Inline',
2 => 'Empty',
3 => 'Core',
),
18 =>
array (
0 => 'ins',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
4 =>
array (
'cite' => 'URI',
'datetime' => 'CDATA',
),
),
19 =>
array (
0 => 'del',
1 => 'Block',
2 => 'Flow',
3 => 'Common',
4 =>
array (
'cite' => 'URI',
'datetime' => 'CDATA',
),
),
),
'attributes' =>
array (
0 =>
array (
0 => 'iframe',
1 => 'allowfullscreen',
2 => 'Bool',
),
1 =>
array (
0 => 'table',
1 => 'height',
2 => 'Text',
),
2 =>
array (
0 => 'td',
1 => 'border',
2 => 'Text',
),
3 =>
array (
0 => 'th',
1 => 'border',
2 => 'Text',
),
4 =>
array (
0 => 'tr',
1 => 'width',
2 => 'Text',
),
5 =>
array (
0 => 'tr',
1 => 'height',
2 => 'Text',
),
6 =>
array (
0 => 'tr',
1 => 'border',
2 => 'Text',
),
),
),
'custom_attributes' =>
array (
0 =>
array (
0 => 'a',
1 => 'target',
2 => 'Enum#_blank,_self,_target,_top',
),
),
'custom_elements' =>
array (
0 =>
array (
0 => 'u',
1 => 'Inline',
2 => 'Inline',
3 => 'Common',
),
),
),
),
'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' => 'cd5094c0f1086272cf69ed521c5ec316',
'secret' => 'bd99a32384636d52baa21504faafe0d60c5a4a6449131bccb7ba6468d7010021',
'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
'queue' => 'default',
'suffix' => NULL,
'region' => 'auto',
'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',
),
),
'services' =>
array (
'mailgun' =>
array (
'domain' => NULL,
'secret' => NULL,
'endpoint' => 'api.mailgun.net',
),
'postmark' =>
array (
'token' => NULL,
),
'ses' =>
array (
'key' => 'cd5094c0f1086272cf69ed521c5ec316',
'secret' => 'bd99a32384636d52baa21504faafe0d60c5a4a6449131bccb7ba6468d7010021',
'region' => 'auto',
),
),
'session' =>
array (
'driver' => 'file',
'lifetime' => '120',
'expire_on_close' => false,
'encrypt' => false,
'files' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\framework/sessions',
'connection' => NULL,
'table' => 'sessions',
'store' => NULL,
'lottery' =>
array (
0 => 2,
1 => 100,
),
'cookie' => 'laravel_session',
'path' => '/',
'domain' => NULL,
'secure' => NULL,
'http_only' => true,
'same_site' => 'lax',
),
'shopping_cart' =>
array (
'format_numbers' => false,
'decimals' => 0,
'dec_point' => '.',
'thousands_sep' => ',',
'storage' => NULL,
'events' => NULL,
),
'view' =>
array (
'paths' =>
array (
0 => 'C:\\laragon\\www\\PROJEK TA\\fchain\\resources\\views',
),
'compiled' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\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',
),
'livewire' =>
array (
'class_namespace' => 'App\\Http\\Livewire',
'view_path' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\resources\\views/livewire',
'layout' => 'layouts.app',
'asset_url' => NULL,
'app_url' => NULL,
'middleware_group' => 'web',
'temporary_file_upload' =>
array (
'disk' => NULL,
'rules' => NULL,
'directory' => NULL,
'middleware' => NULL,
'preview_mimes' =>
array (
0 => 'png',
1 => 'gif',
2 => 'bmp',
3 => 'svg',
4 => 'wav',
5 => 'mp4',
6 => 'mov',
7 => 'avi',
8 => 'wmv',
9 => 'mp3',
10 => 'm4a',
11 => 'jpg',
12 => 'jpeg',
13 => 'mpga',
14 => 'webp',
15 => 'wma',
),
'max_upload_time' => 5,
),
'manifest_path' => NULL,
'back_button_cache' => false,
'render_on_redirect' => false,
),
'excel' =>
array (
'exports' =>
array (
'chunk_size' => 1000,
'pre_calculate_formulas' => false,
'strict_null_comparison' => false,
'csv' =>
array (
'delimiter' => ',',
'enclosure' => '"',
'line_ending' => '
',
'use_bom' => false,
'include_separator_line' => false,
'excel_compatibility' => false,
'output_encoding' => '',
'test_auto_detect' => true,
),
'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' => NULL,
'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',
'db' =>
array (
'connection' => NULL,
),
),
'temporary_files' =>
array (
'local_path' => 'C:\\laragon\\www\\PROJEK TA\\fchain\\storage\\framework/cache/laravel-excel',
'remote_disk' => NULL,
'remote_prefix' => NULL,
'force_resync_remote' => NULL,
),
),
'enum' =>
array (
'lang_file_path' => 'enums',
),
'sweetalert' =>
array (
'theme' => 'default',
'cdn' => NULL,
'alwaysLoadJS' => false,
'neverLoadJS' => false,
'timer' => 5000,
'width' => '32rem',
'height_auto' => true,
'padding' => '1.25rem',
'background' => '#fff',
'animation' =>
array (
'enable' => false,
),
'animatecss' => 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css',
'show_confirm_button' => true,
'show_close_button' => false,
'button_text' =>
array (
'confirm' => 'OK',
'cancel' => 'Cancel',
),
'toast_position' => 'top-end',
'timer_progress_bar' => false,
'middleware' =>
array (
'autoClose' => false,
'toast_position' => 'top-end',
'toast_close_button' => true,
'timer' => 6000,
'auto_display_error_messages' => true,
),
'customClass' =>
array (
'container' => NULL,
'popup' => NULL,
'header' => NULL,
'title' => NULL,
'closeButton' => NULL,
'icon' => NULL,
'image' => NULL,
'content' => NULL,
'input' => NULL,
'actions' => NULL,
'confirmButton' => NULL,
'cancelButton' => NULL,
'footer' => NULL,
),
'confirm_delete_confirm_button_text' => 'Yes, delete it!',
'confirm_delete_confirm_button_color' => NULL,
'confirm_delete_cancel_button_color' => '#d33',
'confirm_delete_cancel_button_text' => 'Cancel',
'confirm_delete_show_cancel_button' => true,
'confirm_delete_show_close_button' => false,
'confirm_delete_icon' => 'warning',
'confirm_delete_show_loader_on_confirm' => true,
),
'datatables' =>
array (
'search' =>
array (
'smart' => true,
'multi_term' => true,
'case_insensitive' => true,
'use_wildcards' => false,
'starts_with' => false,
),
'index_column' => 'DT_RowIndex',
'engines' =>
array (
'eloquent' => 'Yajra\\DataTables\\EloquentDataTable',
'query' => 'Yajra\\DataTables\\QueryDataTable',
'collection' => 'Yajra\\DataTables\\CollectionDataTable',
'resource' => 'Yajra\\DataTables\\ApiResourceDataTable',
),
'builders' =>
array (
),
'nulls_last_sql' => ':column :direction NULLS LAST',
'error' => NULL,
'columns' =>
array (
'excess' =>
array (
0 => 'rn',
1 => 'row_num',
),
'escape' => '*',
'raw' =>
array (
0 => 'action',
),
'blacklist' =>
array (
0 => 'password',
1 => 'remember_token',
),
'whitelist' => '*',
),
'json' =>
array (
'header' =>
array (
),
'options' => 0,
),
),
'user' =>
array (
'name' => 'User',
),
'tinker' =>
array (
'commands' =>
array (
),
'alias' =>
array (
),
'dont_alias' =>
array (
0 => 'App\\Nova',
),
),
);