반응형
1. app.php 에 아래와 같이 추가한다.
config/app.php:
'providers' => [
// ...
Collective\Html\HtmlServiceProvider::class,
// ...
],
Finally, add two class aliases to the aliases array of config/app.php:
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
// ...
],
2. 콘솔창에서 다음과 같이 입력해 준다.
composer require laravelcollective/html
반응형
댓글