Files
hpt_inventory/app/Http/Requests/SampleDetailCreateRequest.php
2026-06-10 16:42:20 +07:00

34 lines
634 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class SampleDetailCreateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'sample_id' => 'required|integer|min:1',
'sample_tests' => 'required|array',
'sample_details' => 'required|array'
];
}
}