未知的PHP artisan tinker输出

未知的PHP artisan tinker输出,php,laravel-5,Php,Laravel 5,我已在cmder中输入以下行: $ php artisan make:migration create_articles_table --table="articles" $ php artisan migrate $ php artisan make:model Articles 然后我使用php tinker: $ php artisan tinker >>>$article = new App\Articles 但我得到了这个输出: => <App\Art

我已在cmder中输入以下行:

$ php artisan make:migration create_articles_table --table="articles"
$ php artisan migrate
$ php artisan make:model Articles
然后我使用php tinker:

$ php artisan tinker
>>>$article = new App\Articles
但我得到了这个输出:

=> <App\Articles #000000001bc562f60000000040231bd3> {}
=>{}

有人能解释这个输出吗?

我向laracast论坛提出了同样的问题,并得到了解决方案。

根据这个链接。这个输出不是问题

=> <App\Articles #000000001bc562f60000000040231bd3> {}
现在如果你想选择你的文章,试试这个

>>>App\Article::first();

您是否在板条箱文章表迁移脚本中指定了任何字段是,$table->text('body');虽然此链接可以回答问题,但最好在此处包含答案的基本部分,并提供链接供参考。如果链接页面更改,只有链接的答案可能会无效。好家伙。我会试着重新写我的答案。
>>>App\Article::first();