Update careers index view to include salary currency options and enhance form validation for improved user experience.
This commit is contained in:
35
config/livewire.php
Normal file
35
config/livewire.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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'),
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user