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 public function attributes(): array
{ {
return [ return [
'nama' => 'nama additional', 'nama' => 'Nama additional',
'harga' => 'harga additional', 'harga' => 'Harga additional',
]; ];
} }

View File

@ -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',
]; ];
} }

View File

@ -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',
]; ];
} }