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

asTimeStamp() protected method

Return a timestamp as unix timestamp.
protected asTimeStamp ( mixed $value ) : integer
$value mixed
return integer
    protected function asTimeStamp($value)
    {
        return $this->asDateTime($value)->getTimestamp();
    }
Model