artisan tinker code example
Example 1: php artisan tinker
php artisan tinker
>>> $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: laravel create command tutorial
Artisan::command('build {project}', function ($project) {
$this->info("Building {$project}!");
})->describe('Build the project');
Example 3: laravel create command tutorial
if ($this->confirm('Do you wish to continue?')) {
//
}