Cool stuff, isn't it a bit over developed? I mean I can like type <h1>{{ $something }}</h1>
just as fast as {{ h1($something) }}
I do like the html, charset and favicon option!
I have some suggestions: YouTube iFrame (and other social media), html5 audio and video tag?
blackbirddev said:
Cool stuff, isn't it a bit over developed? I mean I can like type
<h1>{{ $something }}</h1>
just as fast as{{ h1($something) }}
Actually it's useful to me to do something like "<some html here>".h1('Block title')."<some other html here>"
, so if i need to switch the h1
to h3
i can do it changing just a single character in a single place. Of course it's a different approach.
I'll start working on your requests, they seem quite useful.
vjandrea said:
Hi, to speed up some view creation i extended Illuminate\Html\HtmlBuilder with other methods as:
- favicon()
- meta_charset()
- html()
- title()
- h1() ... h6()
- heading() ... more to come
It's open to suggestions, improvements and forks, repo is here: https://github.com/vjandrea/html
thanks for job.. i m noticed to you the new laravel [4.3] ll remove Html and Forms ;)
serhatdurum said: the new laravel [4.3] ll remove Html and Forms ;)
Do you refer to this? https://github.com/laravel/framework/pull/3945#issuecomment-48829828
In that case i'll transport everything to the community package, HtmlBuilder and FormBuilder are time savers.
New methods added:
vjandrea said:
serhatdurum said: the new laravel [4.3] ll remove Html and Forms ;)
Do you refer to this? https://github.com/laravel/framework/pull/3945#issuecomment-48829828
In that case i'll transport everything to the community package, HtmlBuilder and FormBuilder are time savers.
i'm agree with you about time savers.And also, in the examples or web tutorials for beginner person that include forms and html tags.So many people used it. you can see there
https://github.com/laravel/framework/tree/master/src/Illuminate
there is no form and html.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community