tinker in laravel code example
Example 1: tinker laravel tutorial
php artisan tinker
$user = new App\User;
$user->name = "Wruce Bayne";
$user->email = "[email protected]";
$user->save();
Example 2: exposé tinker laravel
// see the count of all users
App\User::count();
// find a specific user and see their attributes
App\User::where('username', 'kamelia')->first();
// find the relationships of a user
$user = App\User::with('posts')->first();
$user->posts;