laravel update table column code example

Example 1: update column value laravel

Page::where('id', $id)->update(array('image' => 'asdasd'));

Example 2: add column in laravel migration

php artisan make:migration add_paid_to_users_table --table=users

Example 3: update column value laravel

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

// Make sure you've got the Page model
if($page) {
    $page->image = 'imagepath';
    $page->save();
}

Example 4: alter row in table laravel

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

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

$flight->save();