Aravel 5 use of Form and HTML

Source: Internet
Author: User

Recently in the use of Laravel 5 as an example, when the form is done, the habitual use of form::open () results found prompt error, no such class,

Well, looking for, found in Laravel 5, the From and HTML separate, the following is the installation of the use of the method

Add to Composer.json
"Require": {
"illuminate/html": "~5.0"
},

Update
Composer Update

After the update, open/config/app.php


In

Providers

Add below Array

' Illuminate\html\htmlserviceprovider ',

Aliases

Add below Array

' Form ' = ' illuminate\html\formfacade ',
' HTML ' = ' illuminate\html\htmlfacade '


So it's ready to install!

How to use

That's what it used to be.

{{Form::open ()}}

{{form::close ()}}


Now it's like this.

{!! Form::open ()!!}

{!! Form::close ()!!}


This is basically the case, more ways to use the manual can be read http://laravelcollective.com/

Aravel 5 use of Form and HTML

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.