CodeIgniter Forums
Validation dynamic rules with lable - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Validation dynamic rules with lable (/showthread.php?tid=77609)



Validation dynamic rules with lable - shafiei777 - 09-23-2020

Hell,
I'd like to use label on my dynamic rules form language file. Please see bellow code:

PHP Code:
protected $dynamicRules = [
        
'updateAccount' => [
            
'id'    => 'required|is_natural',
            
'name'    => ['label' => 'Label_From_Language_File''rules' => 'required|min_length[6]'],
        ]
    ]; 


Please see Label_From_Language_File : When I used lang(Dashboard.name) I got an error.

Thanks