Laralib\L5scaffold\Makes\MakeModel::compileModelStub PHP Method

compileModelStub() protected method

Compile the migration stub.
protected compileModelStub ( ) : string
return string
    protected function compileModelStub()
    {
        $stub = $this->files->get(substr(__DIR__, 0, -5) . 'Stubs/model.stub');
        $this->buildStub($this->scaffoldCommandObj->getMeta(), $stub);
        $this->buildFillable($stub);
        return $stub;
    }