I have entered these following lines in cmder:
$ php artisan make:migration create_articles_table --table="articles"
$ php artisan migrate
$ php artisan make:model Articles
Then I use php tinker:
$ php artisan tinker
>>>$article = new App\Articles
but I got this output:
=> <App\Articles #000000001bc562f60000000040231bd3> {}
Can anyone explain this output?