mtv\models\Collection::to_json PHP Method

to_json() public method

Return the results of calling to_json on all the model instances in this collection
public to_json ( )
    public function to_json()
    {
        $tmp_array = array();
        foreach ($this->models as $model) {
            array_push($tmp_array, $model->to_json());
        }
        return $tmp_array;
    }