Siopas Inventory PETI for ISTW Website
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.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Transfer;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class ValidasiUpdateTransfer 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
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|