Answers for "laravel update one column for all rows"

PHP
0

how to update all row in laravel

DB::table('table')->update(['column' => 1]);

Model::query()->update(['confirmed' => 1]);
Posted by: Guest on February-07-2021
0

update onlu one column laravel

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

// -----or-----

$page = Page::findOrFail($id);
// Make sure you've got the Page model
if($page) {
    $page->image = 'imagepath';
    $page->save();
}
Posted by: Guest on March-04-2021

Code answers related to "laravel update one column for all rows"

Browse Popular Code Answers by Language