Answers for "update laravel model"

PHP
0

laravel model update table

ModelName::whereId($id)->update($request->all());
Posted by: Guest on August-02-2021
0

laravel model update table

Post::where('id',3)->update(['title'=>'Updated title']);
Posted by: Guest on October-01-2021
1

update laravel

use App\Models\Flight;

$flight = Flight::find(1);

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

$flight->save();
Posted by: Guest on March-30-2021
0

laravel model update table

$post = Post::find(3);
$post->title = "Updated title";
$post->save();


or 
  
  
  $affectedRows = Post::where("id", 3)->update(["title" => "Updated title"]);
Posted by: Guest on October-01-2021
4

laravel update

$flight = App\Models\Flight::find(1);

$flight->name = 'New Flight Name';

$flight->save();
Posted by: Guest on September-25-2020
0

laravel find query

php artisan make:model Flight --migration

php artisan make:model Flight -m
Posted by: Guest on October-08-2020

Browse Popular Code Answers by Language