Laravel has an awesome command called "tinker". This is just a really quick way for you to interact with your application in the command line. It has a great use for debugging new models. Let's check out a quick example:
php artisan tinker
You are now dropped into a PHP terminal. Here you can input whatever you want to execute, like the following.
$user = new User;
$user->first_name = Adam;