We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95e3179 + 54f3d04 commit fe0316dCopy full SHA for fe0316d
html.md
@@ -32,6 +32,12 @@ You may also open forms that point to named routes or controller actions:
32
33
echo Form::open(array('action' => 'Controller@method'))
34
35
+You may pass in route parameters as well:
36
+
37
+ echo Form::open(array('route' => array('route.name', $user->id)))
38
39
+ echo Form::open(array('action' => array('Controller@method', $user->id)))
40
41
If your form is going to accept file uploads, add a `files` option to your array:
42
43
echo Form::open(array('url' => 'foo/bar', 'files' => true))
0 commit comments