123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php namespace Laravel\Database\Eloquent;
- class Pivot extends Model {
- /**
- * The name of the pivot table's table.
- *
- * @var string
- */
- public $pivot_table;
- /**
- * Indicates if the model has update and creation timestamps.
- *
- * @var bool
- */
- public static $timestamps = true;
- /**
- * Create a new pivot table instance.
- *
- * @param string $table
- * @param string $connection
- * @return void
- */
- public function __construct($table, $connection = null)
- {
- $this->pivot_table = $table;
- $this->connection = $connection;
- parent::__construct(array(), true);
- }
- /**
- * Get the name of the pivot table.
- *
- * @return string
- */
- public function table()
- {
- return $this->pivot_table;
- }
- /**
- * Get the connection used by the pivot table.
- *
- * @return string
- */
- public function connection()
- {
- return $this->connection;
- }
- }
|