DrawMyAttention\ResourceGenerator\Commands\ResourceMakeCommand::buildModel PHP Method

buildModel() protected method

protected buildModel ( $name )
    protected function buildModel($name)
    {
        $stub = $this->files->get(__DIR__ . '/../Stubs/model.stub');
        $stub = $this->replaceClassName($name, $stub);
        $stub = $this->addMigrationAttributes($this->argument('attributes'), $stub);
        $stub = $this->addModelAttributes('fillable', $this->argument('attributes'), $stub);
        $stub = $this->addModelAttributes('hidden', $this->argument('attributes'), $stub);
        return $stub;
    }