big update base struktur tahap 1

This commit is contained in:
Wian Drs
2026-07-27 16:24:09 +07:00
parent 2b3592c4c2
commit 1dd02baa72
169 changed files with 24405 additions and 977 deletions
@@ -23,33 +23,48 @@ class AuditLogFilterRequest extends FormRequest
public function rules(): array
{
return [
/** Filter berdasarkan nama modul audit. */
'module' => [
'nullable',
'string'
'string',
'max:100',
],
/** Filter berdasarkan nama action audit. */
'action' => [
'nullable',
'string'
'string',
'max:100',
],
/** Filter berdasarkan ID user pelaku. */
'user_id' => [
'nullable',
'integer'
'integer',
'exists:users,id',
],
/** Filter berdasarkan ID tenant. */
'tenant_id' => [
'nullable',
'integer'
'integer',
'exists:tenants,id',
],
/** Nomor halaman yang ingin diambil. */
'page' => [
'nullable',
'integer',
'min:1',
],
/** Jumlah data per halaman, maksimal 100. */
'per_page' => [
'nullable',
'integer',
'min:1',
'max:100'
]
'max:100',
],
];
}
}