has_one_or_many.php 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php namespace Laravel\Database\Eloquent\Relationships;
  2. use Laravel\Database\Eloquent\Model;
  3. class Has_One_Or_Many extends Relationship {
  4. /**
  5. * Insert a new record for the association.
  6. *
  7. * @param Model|array $attributes
  8. * @return bool
  9. */
  10. public function insert($attributes)
  11. {
  12. $attributes = ($attributes instanceof Model) ? $attributes->attributes : $attributes;
  13. $attributes[$this->foreign_key()] = $this->base->get_key();
  14. return $this->model->create($attributes);
  15. }
  16. /**
  17. * Set the proper constraints on the relationship table.
  18. *
  19. * @return void
  20. */
  21. protected function constrain()
  22. {
  23. $this->table->where($this->foreign_key(), '=', $this->base->get_key());
  24. }
  25. /**
  26. * Set the proper constraints on the relationship table for an eager load.
  27. *
  28. * @param array $results
  29. * @return void
  30. */
  31. public function eagerly_constrain($results)
  32. {
  33. $this->table->where_in($this->foreign_key(), array_keys($results));
  34. }
  35. }