如果是Laravel5,需要先在控制器里引用要使用的模型。比如:use App\User;取出所有记录:$users = User::all();根据主键取出一条数据:$user = User::find(1);var_dump($user->name);