我正在用Laravel构建一个评论函数。
当我在我的网站上存储评论时,它出现了一个问题,出现了一条错误消息。在此处输入图像描述
我怎么才能修好呢?
我现在发布代码
web.php
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ArticlesController;
use App\Http\Controllers\CommentsController;
use App\Models\Article;
Route::resource('articles', ArticlesCon
我对CodeIgniter3有问题:找不到404页
文件: application/controllers/Welcome.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
我试图用调用delete方法,但是我不能这么做,我一直在
“此操作为未经授权的错误”
这是我的档案
routes.php
Route::resource('/types','TypeController');
TypeController.php
public function __construct()
{
$this->middleware('auth');
}
public function destroy(Request $request, Type $type){
$this->authorize(