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.
62 lines
2.3 KiB
62 lines
2.3 KiB
<?php |
|
|
|
namespace App\Http\Requests; |
|
|
|
use Illuminate\Foundation\Http\FormRequest; |
|
|
|
class ValidasiCreatePeti 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 [ |
|
'id_incre' => 'integer', |
|
'tipe_peti_id' => 'required|exists:type_petis,id', |
|
'warna' => 'required|string|max:50', |
|
'customer_id' => 'required|exists:customers,id', |
|
'warehouse_id' => 'required|exists:m_warehouses,id', |
|
'jumlah' => 'required|numeric|min:1', |
|
'date_pembuatan' => 'required|date', |
|
'kondisipeti_id' => 'nullable', |
|
'packing_no' => 'nullable|integer', |
|
'fix_lot' => 'nullable|string|max:100', |
|
]; |
|
} |
|
|
|
public function messages() |
|
{ |
|
return [ |
|
'id_incre.integer' => 'ID Incre harus berupa angka!', |
|
'tipe_peti_id.required' => 'Tipe Peti tidak boleh kosong!', |
|
'tipe_peti_id.exists' => 'Tipe Peti tidak ditemukan!', |
|
'warna.required' => 'Warna tidak boleh kosong!', |
|
'warna.string' => 'Warna harus berupa string!', |
|
'warna.max' => 'Warna maksimal 50 karakter!', |
|
'customer_id.required' => 'Customer tidak boleh kosong!', |
|
'customer_id.exists' => 'Customer tidak ditemukan!', |
|
'warehouse_id.required' => 'Warehouse tidak boleh kosong!', |
|
'warehouse_id.exists' => 'Warehouse tidak ditemukan!', |
|
'jumlah.required' => 'Jumlah tidak boleh kosong!', |
|
'jumlah.numeric' => 'Jumlah harus berupa angka!', |
|
'jumlah.min' => 'Jumlah minimal 1!', |
|
'date_pembuatan.required' => 'Tanggal Pembuatan tidak boleh kosong!', |
|
'date_pembuatan.date' => 'Tanggal Pembuatan harus berupa tanggal!', |
|
'kondisipeti_id.required' => 'Kondisi Peti tidak boleh kosong!', |
|
'packing_no.integer' => 'Packing No harus berupa angka!', |
|
'fix_lot.string' => 'Fix Lot harus berupa string!', |
|
'fix_lot.max' => 'Fix Lot maksimal 100 karakter!', |
|
]; |
|
} |
|
}
|
|
|