fix: update attribute labels in AdditionalRequest, BuketRequest, and FotoRequest to use proper capitalization
This commit is contained in:
parent
4b1a4784a2
commit
b088d90f5d
|
|
@ -36,8 +36,8 @@ public function messages(): array
|
||||||
public function attributes(): array
|
public function attributes(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'nama' => 'nama additional',
|
'nama' => 'Nama additional',
|
||||||
'harga' => 'harga additional',
|
'harga' => 'Harga additional',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,13 +49,13 @@ public function messages(): array
|
||||||
public function attributes(): array
|
public function attributes(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'nama' => 'nama buket',
|
'nama' => 'Nama buket',
|
||||||
'ukuran' => 'ukuran buket',
|
'ukuran' => 'Ukuran buket',
|
||||||
'kategori' => 'kategori buket',
|
'kategori' => 'Kategori buket',
|
||||||
'harga' => 'harga',
|
'harga' => 'Harga buket',
|
||||||
'request_khusus' => 'request khusus',
|
'request_khusus' => 'Request khusus',
|
||||||
'deskripsi' => 'deskripsi produk',
|
'deskripsi' => 'Deskripsi buket',
|
||||||
'foto' => 'foto produk',
|
'foto' => 'Foto buket',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,10 +46,11 @@ public function messages(): array
|
||||||
public function attributes(): array
|
public function attributes(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'nama' => 'nama paket',
|
'nama' => 'Nama paket',
|
||||||
'harga' => 'harga paket',
|
'harga' => 'Harga paket',
|
||||||
'durasi' => 'durasi paket',
|
'durasi' => 'Durasi paket',
|
||||||
'foto' => 'foto paket',
|
'foto' => 'Foto paket',
|
||||||
|
'deskripsi' => 'Deskripsi paket',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue