Skip to content

Instantly share code, notes, and snippets.

@sirawitpra
Last active March 29, 2018 08:45
Show Gist options
  • Save sirawitpra/c4eb86edddd89c64a175e1e6f771266e to your computer and use it in GitHub Desktop.
Save sirawitpra/c4eb86edddd89c64a175e1e6f771266e to your computer and use it in GitHub Desktop.
<?php
class Resource extends Model {
protected function setKeysForSaveQuery(Builder $query)
{
$query
->where('pk_1', '=', $this->getAttribute('pk_1'))
->where('pk_2', '=', $this->getAttribute('pk_2'));
return $query;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment