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
{
return [
'nama' => 'nama pemesan',
'no_wa' => 'nomor WhatsApp',
'bukti_bayar' => 'bukti pembayaran',
'nama' => 'Nama pemesan',
'no_wa' => 'Nomor WhatsApp',
'bukti_bayar' => 'Bukti pembayaran',
];
}
}

View File

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