route('supplier'); return [ 'name' => ['required', 'string', 'max:200', Rule::unique('suppliers', 'name')->ignore($supplier)], 'phone_number' => ['nullable', 'string', 'max:20'], 'address' => ['nullable', 'string'], ]; } public function attributes(): array { return [ 'name' => 'nama', 'phone_number' => 'nomor telepon', 'address' => 'alamat', ]; } }