php artisan tinker code example

Example 1: php artisan tinker

php artisan tinker
# Using this AdminUser Class we can save data from command
>>> $admin = new App\Models\AdminUser
=> App\Models\AdminUser {#3379}
>>> $admin->name = 'Admin'
=> "Admin"
>>> $admin->email = '[email protected]'
=> "[email protected]"
>>> $admin->password = Hash::make('manojd123')
=> "$2y$10$s7IfVxrc48RYUbYwIbOuXOQRKdDZzXb.4RIVQ1P8bWPcxY6s1IPZe"
>>> $admin->job_title = 'Admin'
=> "Admin"
>>> $admin->save()
=> true
>>>

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;

Tags:

Php Example