Skip to content

Instantly share code, notes, and snippets.

@willchambers99
Last active January 30, 2020 16:14
Show Gist options
  • Save willchambers99/4d7dec90608cbc95b6930f604450f43b to your computer and use it in GitHub Desktop.
Save willchambers99/4d7dec90608cbc95b6930f604450f43b to your computer and use it in GitHub Desktop.
Store or update in one function
<?php
public function crupdate($id = null, Request $request)
{
$fields = $request->only(['field_1', 'field_2']);
$model = Model::updateOrCreate(
[
'id' => $id
],
$fields
);
return redirect()->route('your.destination');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment