Вход Регистрация
Файл: system/vendor/illuminate/database/Eloquent/Relations/HasMany.php
Строк: 51
<?php

namespace IlluminateDatabaseEloquentRelations;

use 
IlluminateDatabaseEloquentCollection;

class 
HasMany extends HasOneOrMany
{
    
/**
     * Get the results of the relationship.
     *
     * @return mixed
     */
    
public function getResults()
    {
        return ! 
is_null($this->getParentKey())
                ? 
$this->query->get()
                : 
$this->related->newCollection();
    }

    
/**
     * Initialize the relation on a set of models.
     *
     * @param  array  $models
     * @param  string  $relation
     * @return array
     */
    
public function initRelation(array $models$relation)
    {
        foreach (
$models as $model) {
            
$model->setRelation($relation$this->related->newCollection());
        }

        return 
$models;
    }

    
/**
     * Match the eagerly loaded results to their parents.
     *
     * @param  array  $models
     * @param  IlluminateDatabaseEloquentCollection  $results
     * @param  string  $relation
     * @return array
     */
    
public function match(array $modelsCollection $results$relation)
    {
        return 
$this->matchMany($models$results$relation);
    }
}
Онлайн: 0
Реклама