私はLaravelの初心者です。この質問が子供っぽく聞こえる場合は、ご容赦ください。
私はモデルを持っています
class Config extends Eloquent {
public static $table = 'configs';
}
コントローラーは次のようになります
class UserController extends BaseController {
Public function getIndex ()
{
$config_items = Config::all ();
var_dump ( $config_items );
return View::make ( 'user.userindex' )
-> with ( 'title', 'User Page' );
}
}
しかし、Config モデルにアクセスしようとすると、エラーが発生します。
symfony\Component\Debug\Exception\FatalErrorException 未定義メソッド呼び出し Illuminate\Config\Repository::all()
助けてください!
この質問は、私や同僚のような多くの Laravel 4 初心者の助けになると思います。助けてください!