Custom view
Replace field slots with custom views
//Custom view slots
view(string $blade_view_to_include)
beforeView(string $blade_view_to_include)
afterView(string $blade_view_to_include)
afterLabelView(string $blade_view_to_include)Input::make('My custom field', 'customProperty')
->custom()
->view('path.mybladeview')
->rule('required'),Input::make('Custom Field')->view('fields.custom-field');Last updated
Was this helpful?