laravel update where$ code example
Example 1: create or update in laaravel
//if there is id => 1 for user role , update this and if there is not
//id => 1 create it and insert some data for it
$data = $request->all();
UserRule::updateOrCreate(
['id' => 1],
$data
);
Example 2: create laravel update
const CREATED_AT = 'creation_date';
const UPDATED_AT = 'last_update';