fix: update attribute labels in AdditionalRequest, BuketRequest, and FotoRequest to use proper capitalization

This commit is contained in:
LailaWulandarii 2026-02-16 14:14:19 +07:00
parent 4b1a4784a2
commit b088d90f5d
3 changed files with 14 additions and 13 deletions

View File

@ -36,8 +36,8 @@ public function messages(): array
public function attributes(): array
{
return [
'nama' => 'nama additional',
'harga' => 'harga additional',
'nama' => 'Nama additional',
'harga' => 'Harga additional',
];
}

View File

@ -49,13 +49,13 @@ public function messages(): array
public function attributes(): array
{
return [
'nama' => 'nama buket',
'ukuran' => 'ukuran buket',
'kategori' => 'kategori buket',
'harga' => 'harga',
'request_khusus' => 'request khusus',
'deskripsi' => 'deskripsi produk',
'foto' => 'foto produk',
'nama' => 'Nama buket',
'ukuran' => 'Ukuran buket',
'kategori' => 'Kategori buket',
'harga' => 'Harga buket',
'request_khusus' => 'Request khusus',
'deskripsi' => 'Deskripsi buket',
'foto' => 'Foto buket',
];
}

View File

@ -46,10 +46,11 @@ public function messages(): array
public function attributes(): array
{
return [
'nama' => 'nama paket',
'harga' => 'harga paket',
'durasi' => 'durasi paket',
'foto' => 'foto paket',
'nama' => 'Nama paket',
'harga' => 'Harga paket',
'durasi' => 'Durasi paket',
'foto' => 'Foto paket',
'deskripsi' => 'Deskripsi paket',
];
}