1
我正在嘗試使用laravel 4創建應用程序。我使用以下代碼創建了答案模型。使用未定義的常量應用程序 - 在Laravel中假定'App'
<?php namespace App\Models;
class Answer extends Eloquent {
protected $guarded = array();
public static $rules = array();
}
和我已經播種過樣品數據。但是,雖然我嘗試了下面的命令行;
php artisan tink
echo App\Models\Answer::all();
這表明
Use of undefined constant App - assumed 'App'
代替具有JSON格式的樣本數據。請爲我找到一個解決方案。
是這方面的工作?你的名字空間是否被正確解析? –