LoginSignup
0
0

More than 5 years have passed since last update.

Laravel 5 ErrorException (E_ERROR) Class 'HTML' not found はタイプミス

Posted at

Laravel5 で view を書いていたらエラーがでました。

 HTML Class が無いとエラー

ErrorException (E_ERROR)
Class 'HTML' not found (View: /var/www/laravel/resources/views/pugiemonn/index.blade.php)

寿司ゆき:confused

よく見ると

よく見て気づいたのですが、HTMLという表記が間違っていました。

index.blade.php
- {!! HTML::link('/pugiemonn/, $creator, ['id' => 'pugiemonn']) !!}
+ {!! Html::link('/pugiemonn/, $creator, ['id' => 'pugiemonn']) !!}

Html でした。頭文字だけ大文字でした。きづかなかった(☝ ՞ਊ ՞)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0