Illuminate\Database\Eloquent\Model::offsetGet PHP Метод

offsetGet() публичный Метод

Get the value for a given offset.
public offsetGet ( mixed $offset ) : mixed
$offset mixed
Результат mixed
    public function offsetGet($offset)
    {
        return $this->{$offset};
    }

Usage Example

Пример #1
0
 public function offsetGet($offset)
 {
     return $this->model->offsetGet($offset);
 }
Model