You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\Transfer;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class ValidasiCreateTransfer extends FormRequest
|
||
|
{
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*/
|
||
|
public function authorize(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||
|
*/
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [
|
||
|
'peti_id' => 'nullable', // Optional, peti_id harus ada di tabel petis
|
||
|
'source_warehouse' => 'nullable', // Optional, source_warehouse harus ada di tabel m_warehouses
|
||
|
'destination_warehouse' => 'nullable', // Optional, destination_warehouse harus ada di tabel m_warehouses
|
||
|
'name_customer' => 'nullable', // Optional, name_customer harus ada di tabel customers
|
||
|
'date' => 'nullable', // Optional, harus berupa tanggal
|
||
|
];
|
||
|
}
|
||
|
}
|