43 lines
1001 B
PHP
43 lines
1001 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* Class-based components: PHP-Klassen leben in app/Livewire,
|
|
* Blade-Views getrennt unter resources/views/livewire.
|
|
*/
|
|
'class_namespace' => 'App\\Livewire',
|
|
'view_path' => resource_path('views/livewire'),
|
|
|
|
'layout' => 'layouts.app',
|
|
|
|
'lazy_placeholder' => null,
|
|
|
|
'temporary_file_upload' => [
|
|
'disk' => null,
|
|
'rules' => null,
|
|
'directory' => null,
|
|
'middleware' => null,
|
|
'preview_mimes' => [
|
|
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4', 'mov', 'avi', 'wmv',
|
|
'mp3', 'm4a', 'jpg', 'jpeg', 'mpga', 'webp', 'wma', 'ogg',
|
|
],
|
|
'max_upload_time' => 5,
|
|
'cleanup' => true,
|
|
],
|
|
|
|
'render_on_redirect' => false,
|
|
|
|
'legacy_model_binding' => false,
|
|
|
|
'inject_assets' => true,
|
|
|
|
'navigate' => [
|
|
'show_progress_bar' => true,
|
|
'progress_bar_color' => '#4F46E5',
|
|
],
|
|
|
|
'inject_morph_markers' => true,
|
|
|
|
'pagination_theme' => 'tailwind',
|
|
];
|