Answers for "how to update value in laravel"

PHP
12

update column value laravel

Page::where('id', $id)->update(array('image' => 'asdasd'));
Posted by: Guest on May-07-2020
10

laravel update from query

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);
Posted by: Guest on May-07-2020
3

update column value laravel

$page = Page::find($id);

// Make sure you've got the Page model
if($page) {
    $page->image = 'imagepath';
    $page->save();
}
Posted by: Guest on May-07-2020
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
4

laravel update

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

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

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

Code answers related to "how to update value in laravel"

Browse Popular Code Answers by Language