错误:
(1/1) FatalErrorException
Class 'Form' not found in kproject.dev/posts/create
我已将这些添加到别名中:
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
并将其添加到提供商:
Collective\Html\HtmlServiceProvider::class,
这是create.blade.php
@extends('layout.app')
@section('content')
<h1>Create</h1>
<hr>
{!!Form::open(['action'=>'postscontroller@store','method'=>'POST']) !!}
{!! Form::close() !!}
@endsection
答案 0 :(得分:0)
我找到了这样做的方法我刚刚添加了这个命令composer require laravelcollective/html
只需在终端中使用此命令即可。您只需更改json
文件即可。