我的laravel版本5.7.8,我正在尝试使用以下代码安装最后一个Laravel Collective:
composer require "laravelcollective/html":"^5.4.0"
但这不起作用,为什么?
这是我在联系人视图页面中的代码:
{!! Form::open(['url' => 'contact/submit']) !!}
<div class="form-group">
{{Form::label('name', 'Name')}}
{{Form::label('name', 'Enter your name')}}
</div>
<div class="form-group">
{{Form::label('email', 'E-Mail Address')}}
{{Form::label('email', 'example yourgmail@gmail.com')}}
</div>
{!! Form::close() !!}
答案 0 :(得分:0)
如果您正在运行5.7。*的最新版本Laravel,则laravelcollective / html软件包可能不是最新的。因此,您可以签出最新版本,即 5.7.1 。
参考:Packagist laravel/collectivehtml
如果这没有帮助,请在 config / app.php 下查看您的提供程序 您需要将以下条目输入您的provider数组
'Collective\Html\HtmlServiceProvider',
所以整个数组看起来像
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Auth\AuthServiceProvider::class,
Illuminate\Broadcasting\BroadcastServiceProvider::class,
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Cache\CacheServiceProvider::class,
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
Illuminate\Cookie\CookieServiceProvider::class,
Illuminate\Database\DatabaseServiceProvider::class,
Illuminate\Encryption\EncryptionServiceProvider::class,
Illuminate\Filesystem\FilesystemServiceProvider::class,
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
Illuminate\Hashing\HashServiceProvider::class,
Illuminate\Mail\MailServiceProvider::class,
Illuminate\Notifications\NotificationServiceProvider::class,
Illuminate\Pagination\PaginationServiceProvider::class,
Illuminate\Pipeline\PipelineServiceProvider::class,
Illuminate\Queue\QueueServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
Illuminate\Session\SessionServiceProvider::class,
Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
/*
* Package Service Providers...
*/
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
/*
* Collective Providers
*/
'Collective\Html\HtmlServiceProvider', //Your Provider here
/*
* Third Party Providers
*/
],
下一步是检查集合的别名是否在同一文件( config / app.php )中正确设置
'aliases' => [
// ...
'Form' => 'Collective\Html\FormFacade',
'Html' => 'Collective\Html\HtmlFacade',
// ...
],
希望这对您有所帮助!
答案 1 :(得分:0)
您的代码没有问题,我认为您在安装期间忘记了任何操作
我将从初始阶段开始如何使用laravelcollective / html包
首先通过Composer安装此软件包。编辑项目的composer.json
文件以要求 laravelcollective / html
"require": {
"laravelcollective/html": "*"
}
注意:这将下载 laravelcollective / html 软件包的最新版本
接下来,从终端更新Composer:
composer update
接下来,将您的新提供者添加到config/app.php
的 providers 数组中:
'providers' => [
// ...
Collective\Html\HtmlServiceProvider::class,
// ...
],
向config/app.php:
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
// ...
],
现在将您的代码放入视图文件中,然后在浏览器中签入将不再出错
答案 2 :(得分:0)
我解决了这个问题: 1-
composer require laravelcollective/html
“我在包装工中找到了它” 二合一拉拉夫项目
CONFIG/app.php:
'providers' => [
Collective\Html\HtmlServiceProvider::class,
],
“我在提供程序的末尾添加了一行代码,并且没有其他内容” 3-IN LARAVEL项目 CONFIG / app.php:
'aliases' => [
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
],
4-on cmd或gitbash
composer update
“这将使用Internet资源!” 5英寸cmd或git bash
php artisan serve
6-在网络浏览器上检查表格
答案 3 :(得分:0)
如果您使用LaravelCollection 5.7或更高版本,则无需添加
'providers' => [
// ...
Collective\Html\HtmlServiceProvider::class,
// ...
],
和
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
// ...
],
您唯一需要做的就是运行
composer require laravelcollective/html
你很好。