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