update laravel command code example

Example 1: update laravel version global

FIRST METHOD :
===============
# uninstall the package
composer global remove laravel/installer

# reinstall
composer global require laravel/installer
  
SECOND METHOD : 
================
  
Just upgraded from Laravel 7 to 8, and running 
  composer global require "laravel/installer:^4.0" 

did the trick for me (i.e., without removeing first)

Example 2: laravel update

<!-mass update-->
App\Models\Flight::where('active', 1)
          ->where('destination', 'San Diego')
          ->update(['delayed' => 1]);

Example 3: update laravel

use App\Models\Flight;

$flight = Flight::find(1);

$flight->name = 'Paris to London';

$flight->save();

Tags:

Php Example