REBELinBLUE\Deployer\Repositories\EloquentRepository::getById PHP 메소드

getById() 공개 메소드

Get's an item from the repository.
public getById ( integer $model_id ) : Model
$model_id integer
리턴 Illuminate\Database\Eloquent\Model
    public function getById($model_id)
    {
        return $this->model->findOrFail($model_id);
    }