*/ public function rules() : array { return [ 'kode' => 'nullable', 'nomor_pinjaman' => 'nullable', 'guarantee_type_id' => 'required', 'nomor_jaminan' => 'nullable', 'nilai_jaminan' => 'nullable|numeric', 'status' => 'nullable', ]; } public function ignored() : string { return $this->id; } protected function prepareForValidation() { $this->merge([ 'kode' => round(microtime(true) * 100), ]); } }