hookNames() public method

public hookNames ( Closure $hook )
$hook Closure
コード例 #1
0
ファイル: Multiple.php プロジェクト: Ganganation/Formidable
 protected function getHtmlOfForm(Form $form, $index)
 {
     $myName = $this->name;
     $form->hookNames(function ($name) use($myName, $index) {
         return $myName . '[' . $index . '][' . $name . ']';
     });
     return (string) $form;
 }