I am viewing the episode "Eloquent Relationships" in Laravel 5 fundamentals and trying to create a user object via PHP Artisan tinker like this:
$user = new App\User;
=> App\User {#689}
But there is no user object created. I have the standard user class in App and I ran the migration to create the corresponding table.
Can anyone help me out here ?
Thx !
Aggy