web-dev-qa-db-ja.com

HtmlServiceProvider.phpの36行目のFatalErrorException:laravel

laravel 5.2を使用していますが、HtmlServiceProvider.phpの36行目で次のエラーFatalErrorExceptionが発生しています:未定義のメソッドIlluminate\Foundation\Application :: bindShared()の呼び出し

私のapp.phpファイルは

<?php

return [


    'env' => env('APP_ENV', 'production'),


    'debug' => env('APP_DEBUG', false),


    'url' => 'http://localhost',


    'timezone' => 'UTC',


    'locale' => 'en',


    'fallback_locale' => 'en',


    'key' => env('APP_KEY'),

    'cipher' => 'AES-256-CBC',


    'log' => env('APP_LOG', 'single'),


    '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\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,
        'Illuminate\Html\HtmlServiceProvider',

        /*
         * Application Service Providers...
         */
        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,

    ],


    'aliases' => [

        'App'       => Illuminate\Support\Facades\App::class,
        'Artisan'   => Illuminate\Support\Facades\Artisan::class,
        'Auth'      => Illuminate\Support\Facades\Auth::class,
        'Blade'     => Illuminate\Support\Facades\Blade::class,
        'Cache'     => Illuminate\Support\Facades\Cache::class,
        'Config'    => Illuminate\Support\Facades\Config::class,
        'Cookie'    => Illuminate\Support\Facades\Cookie::class,
        'Crypt'     => Illuminate\Support\Facades\Crypt::class,
        'DB'        => Illuminate\Support\Facades\DB::class,
        'Eloquent'  => Illuminate\Database\Eloquent\Model::class,
        'Event'     => Illuminate\Support\Facades\Event::class,
        'File'      => Illuminate\Support\Facades\File::class,
        'Gate'      => Illuminate\Support\Facades\Gate::class,
        'Hash'      => Illuminate\Support\Facades\Hash::class,
        'Lang'      => Illuminate\Support\Facades\Lang::class,
        'Log'       => Illuminate\Support\Facades\Log::class,
        'Mail'      => Illuminate\Support\Facades\Mail::class,
        'Password'  => Illuminate\Support\Facades\Password::class,
        'Queue'     => Illuminate\Support\Facades\Queue::class,
        'Redirect'  => Illuminate\Support\Facades\Redirect::class,
        'Redis'     => Illuminate\Support\Facades\Redis::class,
        'Request'   => Illuminate\Support\Facades\Request::class,
        'Response'  => Illuminate\Support\Facades\Response::class,
        'Route'     => Illuminate\Support\Facades\Route::class,
        'Schema'    => Illuminate\Support\Facades\Schema::class,
        'Session'   => Illuminate\Support\Facades\Session::class,
        'Storage'   => Illuminate\Support\Facades\Storage::class,
        'URL'       => Illuminate\Support\Facades\URL::class,
        'Validator' => Illuminate\Support\Facades\Validator::class,
        'View'      => Illuminate\Support\Facades\View::class,
        'Form'      => 'Illuminate\Html\FormFacade',
        'Html'      => 'Illuminate\Html\HtmlFacade',

    ],

];

そしてsignup_form.blade.phpファイルは

<h1>signupform</h1>

<div  class="signup-form">
  {!! Form::open() !!}

  {!! Form::text('email','',array('class'=>'email','id'=>"email","placeholder"=>'Email address'))!!}

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

</div>

そして私のroutes.phpファイル

<?php



Route::get('/', function () {
    return view('welcome');
});
Route::get('home', function () {
    echo 'welome home';
});

Route::get('signup', 'Auth\HomeController@signupform');

ブラウザでフォームを開くと、上記のエラーが表示されます。

13
Murali Krishna

削除する必要があります:

'Illuminate\Html\HtmlServiceProvider',

そして

'Form'      => 'Illuminate\Html\FormFacade',
'Html'      => 'Illuminate\Html\HtmlFacade',

`config /app.phpを作成します

次に、composer.jsonilluminate/htmlから削除してから、composer.jsonに追加します。

"laravelcollective/html": "5.*"

requireセクション

次に、composer installを実行します

さらに、このパッケージのインストールを完了するには、 https://laravelcollective.com/docs/5.1/html#installation の指示に従う必要があります。

[〜#〜] edit [〜#〜]このため、現時点ではITが機能していない可能性があります: https:// github .com/LaravelCollective/html/issues/1 -このPRをマージすると、おそらく解決されます: https://github.com/illuminate/html/pull/31/files

19

まず、composer.jsonファイルを置き換える必要があります:

"illuminate/html": "^5.0"

"laravelcollective/html":"5.2.*"

次に、ターミナルで次のコマンドを入力して、ターミナルからcomposerを更新する必要があります:composer update

次に、config/app.phpファイル、次を置き換えます:

'Illuminate\Html\HtmlServiceProvider::class'`

'Collective\Html\HtmlServiceProvider::class'

次に、次の2つのクラスエイリアスを置き換えます。

'Form'      => Illuminate\Html\FormFacade::class,
'Html'      => Illuminate\Html\HtmlFacade::class, 

'Form'      => Collective\Html\FormFacade::class,
'Html'      => Collective\Html\HtmlFacade::class,

最後に、「web」ミドルウェアを次のように置き換えて、routes.phpファイルを更新する必要があります。

Route::group(['middleware' => ['web']], function () use ($router) {
    $router->resource('blogs', 'BlogsController');
});
12
favourworks

これが LaravelCollective.com のチュートリアルです。

2
Abduhafiz

Illuminate/HTMLパッケージが非推奨になったため、私のために働いた「トリック」は上記のものです。

使用:laravelcollective/html https://stackoverflow.com/a/34991188/3327198

ターミナル(CLI):composer require laravelcollective/html

プロバイダーグループのconfig/app.phpに次の行を追加します。

Collective\Html\HtmlServiceProvider :: class、

エイリアスグループ: 'Form' => Collective\Html\FormFacade :: class、 'Html' => Collective\Html\HtmlFacade :: class、

1

このトリックは私のために働きましたすべての「bindShared」関数の名前をvendor\illuminate\html\HtmlServiceProvider.phpファイルの「singleton」に変更します

例:変更

$this->app->bindShared('html', function($app)
{
   return new HtmlBuilder($app['url']);
});
</ code>

$this->app->singleton('html', function($app)
{
   return new HtmlBuilder($app['url']);
});
</ code>
0
user3723572