Created
July 30, 2013 20:31
-
-
Save zackkitzmiller/6116638 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php echo Form::open(array('url' => 'foo/bar', 'method' => 'post')); ?> | |
<form action="foo/bar" method="post"> |
I get the point on some of the other helpers. Doesn't save anything. Though I wouldn't mind if there were some view specific helper funcs that mapped to those methods.
{{ label('foo', 'Foo Input') }}
{{ input_tag('foo') }}
vs.
<label for="foo">Foo Input</label>
<input type="text" id="foo" name="foo">
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, for yours...
But, yes, I'm now competing over 5 chars. ;)