fix: update attribute labels for BookingFotoRequest and PesanBuketRequest to use proper capitalization

This commit is contained in:
LailaWulandarii 2026-02-15 14:13:53 +07:00
parent 811113d4e8
commit 4b1a4784a2
2 changed files with 9 additions and 9 deletions

View File

@ -44,9 +44,9 @@ public function messages(): array
public function attributes(): array public function attributes(): array
{ {
return [ return [
'nama' => 'nama pemesan', 'nama' => 'Nama pemesan',
'no_wa' => 'nomor WhatsApp', 'no_wa' => 'Nomor WhatsApp',
'bukti_bayar' => 'bukti pembayaran', 'bukti_bayar' => 'Bukti pembayaran',
]; ];
} }
} }

View File

@ -54,12 +54,12 @@ public function messages(): array
public function attributes(): array public function attributes(): array
{ {
return [ return [
'nama' => 'nama pemesan', 'nama' => 'Nama pemesan',
'no_wa' => 'nomor WhatsApp', 'no_wa' => 'Nomor WhatsApp',
'tgl_ambil' => 'tanggal pengambilan', 'tgl_ambil' => 'Tanggal pengambilan',
'waktu_ambil' => 'waktu pengambilan', 'waktu_ambil' => 'Waktu pengambilan',
'bukti_bayar' => 'bukti pembayaran', 'bukti_bayar' => 'Bukti pembayaran',
'ucapan' => 'kartu ucapan', 'ucapan' => 'Kartu ucapan',
]; ];
} }
} }