35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Livewire Temporary File Uploads
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By default, Livewire will upload temporary files to the local disk
|
|
| and clear them after a maximum of 5 minutes. You may customize
|
|
| this process by changing the "disk" and "max_upload_time" properties.
|
|
|
|
|
*/
|
|
|
|
'temporary_file_upload' => [
|
|
'disk' => 'public', // This is the default disk for temporary uploads.
|
|
'rules' => null, // Set this to null to use default upload rules (e.g., file size, mime types).
|
|
'middleware' => null, // Set this to null to use default middleware for temporary uploads.
|
|
'max_upload_time' => 30, // The maximum number of minutes a temporary file can be stored.
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Livewire App URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the app URL that Livewire will use to make requests to.
|
|
| If you're using a custom domain, you may need to change this.
|
|
|
|
|
*/
|
|
|
|
'app_url' => env('APP_URL'),
|
|
|
|
];
|