46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests\Quality;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class QualityDocumentStoreRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'site_name' => ['required', 'string', 'max:200'],
|
||
|
|
'client_id' => ['nullable', 'integer', 'exists:clients,id'],
|
||
|
|
'inspector_id' => ['nullable', 'integer', 'exists:users,id'],
|
||
|
|
'received_date' => ['nullable', 'date'],
|
||
|
|
'options' => ['nullable', 'array'],
|
||
|
|
'options.manager' => ['nullable', 'array'],
|
||
|
|
'options.manager.name' => ['nullable', 'string', 'max:50'],
|
||
|
|
'options.manager.phone' => ['nullable', 'string', 'max:30'],
|
||
|
|
'options.inspection' => ['nullable', 'array'],
|
||
|
|
'options.inspection.request_date' => ['nullable', 'date'],
|
||
|
|
'options.inspection.start_date' => ['nullable', 'date'],
|
||
|
|
'options.inspection.end_date' => ['nullable', 'date'],
|
||
|
|
'options.site_address' => ['nullable', 'array'],
|
||
|
|
'options.construction_site' => ['nullable', 'array'],
|
||
|
|
'options.material_distributor' => ['nullable', 'array'],
|
||
|
|
'options.contractor' => ['nullable', 'array'],
|
||
|
|
'options.supervisor' => ['nullable', 'array'],
|
||
|
|
'order_ids' => ['nullable', 'array'],
|
||
|
|
'order_ids.*' => ['integer', 'exists:orders,id'],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function messages(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'site_name.required' => __('validation.required', ['attribute' => '현장명']),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|