Atualize o compositor Laravel
//just run this command in your project directory
composer update
Isaac
//just run this command in your project directory
composer update
php composer.phar update
Flight::where('active', 1)
->where('destination', 'San Diego')
->update(['delayed' => 1]);
composer global require "laravel/installer:^4.0"
$flight = App\Models\Flight::find(1);
$flight->name = 'New Flight Name';
$flight->save();