pivot.php 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php namespace Laravel\Database\Eloquent;
  2. class Pivot extends Model {
  3. /**
  4. * The name of the pivot table's table.
  5. *
  6. * @var string
  7. */
  8. public $pivot_table;
  9. /**
  10. * Indicates if the model has update and creation timestamps.
  11. *
  12. * @var bool
  13. */
  14. public static $timestamps = true;
  15. /**
  16. * Create a new pivot table instance.
  17. *
  18. * @param string $table
  19. * @param string $connection
  20. * @return void
  21. */
  22. public function __construct($table, $connection = null)
  23. {
  24. $this->pivot_table = $table;
  25. $this->connection = $connection;
  26. parent::__construct(array(), true);
  27. }
  28. /**
  29. * Get the name of the pivot table.
  30. *
  31. * @return string
  32. */
  33. public function table()
  34. {
  35. return $this->pivot_table;
  36. }
  37. /**
  38. * Get the connection used by the pivot table.
  39. *
  40. * @return string
  41. */
  42. public function connection()
  43. {
  44. return $this->connection;
  45. }
  46. }