✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Perhatikan potongan kode berikut:
$validator = Validator::make($request->all(), [ 'judul' => 'required|string', 'penulis' => 'required|string', 'tahun_terbit' => 'required|string|max:4', 'kategori' => 'required|string|max:100',]);