Illuminate\Database\Eloquent\Model::getCreatedAtColumn PHP Method

getCreatedAtColumn() public method

Get the name of the "created at" column.
public getCreatedAtColumn ( ) : string
return string
    public function getCreatedAtColumn()
    {
        return static::CREATED_AT;
    }

Usage Example

 /**
  * Get the name of the "created at" column.
  *
  * @return string
  */
 public function createdAt()
 {
     return $this->parent->getCreatedAtColumn();
 }
All Usage Examples Of Illuminate\Database\Eloquent\Model::getCreatedAtColumn
Model