gpt4 book ai didi

php - 命名空间在 Laravel 中不起作用

转载 作者:行者123 更新时间:2023-12-04 16:56:07 25 4
gpt4 key购买 nike

你好,我有一个名为“事件”的模型

/app/models/DC/Events/Event.php

<?php
namespace models\DC\Events;

class Event extends \Eloquent {

protected $table = 'Events';

protected $guarded = array('id', 'password_confirmation');
protected $fillable = [
'name',
'adress',
'zipcode',
'time',
'date',
'Fee',
'link',
'Description',
'country',
'city',
'fblink',
'lineup'
];
}

/app/controllers/EventController.php
<?php

use \models\DC\Events\Event as S;

class EventController extends \BaseController {


/**
* Display a listing of the resource.
* GET /events
*
* @return Response
*/
public function index()
{
$events = S::all();
$events = S::paginate(5);
return View::make('events.index');
}
}

但它告诉我“找不到类 'models\DC\Events\Event'”

关于解决的任何建议还是有更好的方法?

最佳答案

为了更新自动加载文件以确保您的所有类都包含在内,您需要运行

composer dump-autoload

关于php - 命名空间在 Laravel 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27636820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com