Laravel - Database Basics and Migrations
You try this in Tinker:
But it throws an error. What is a common cause?
$user = new App\Models\User;$user->name = 'John';$user->save();But it throws an error. What is a common cause?
