我绝对是Laravel的新手,这是我尝试使用它的第一天,我正在实习,那里的指导者向我推荐了Laravel 5.7的用法来创建CRUD作为示例并帮助我熟悉该框架,以便我可以完成我的最后一个项目,他还向我推荐了一个教程,因此我逐步进行了该教程(起初确实很麻烦,因为事实证明迁移存在一些错误,但是在一两个小时的压抑之后设法将其修复))之后,我继续进行本教程,以至于应该测试我的create视图,因为每次我尝试它都会对produits.create返回一个无效的参数异常,结果就证明了这一点。 ,我检查了本教程中的评论,有人遇到了我的问题,但是没有人提出一个可行的解决方案,我看起来总体上都是stackoverflow,但是似乎有人在挖掘不同的问题,因此没有产生结果
InvalidArgumentException
View [produits.create] not found.
这是我得到的错误
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ShareController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('produits.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
}
}
这是Controller类
@extends('layout')
@section('content')
<style>
.uper {
margin-top: 40px;
}
</style>
<div class="card uper">
<div class="card-header">
Ajouter Produit
</div>
<div class="card-body">
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div><br />
@endif
<form method="post" action="{{ route('produits.store') }}">
<div class="form-group">
@csrf
<label for="nom">Nom Produit:</label>
<input type="text" class="form-control" name="nom_produit"/>
</div>
<div class="form-group">
<label for="prix">Prix Produit :</label>
<input type="text" class="form-control" name="prix_produit"/>
</div>
<div class="form-group">
<label for="quantite">Quantité Produit:</label>
<input type="text" class="form-control" name="quantite_produit"/>
</div>
<button type="submit" class="btn btn-primary">Add</button>
</form>
</div>
</div>
@endsection
这是create.blade.php
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::resource('produits', 'ShareController');
这是web.php
谢谢。