DirkGroenen\Pinterest\Models\Model::toArray PHP Method

toArray() public method

Convert the model instance to an array
public toArray ( ) : array
return array
    public function toArray()
    {
        $array = array();
        foreach ($this->fillable as $key) {
            $array[$key] = $this->{$key};
        }
        return $array;
    }