October CMS Builder Plugin Setup

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
October CMS Builder Plugin Setup
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Configuration of Builder Plugin for October CMS

Builder is an official RainLab plugin for visual plugin development in October CMS. It allows creating models, databases, controllers and forms without writing code. Useful for rapid prototyping, but final code should be refined manually.

Installation

php artisan plugin:install rainlab.builder
php artisan october:migrate

Builder Features

Database — create tables via visual constructor. Supports all Laravel column types, indexes, foreign keys. Generates migration file.

Models — create Eloquent models with field configuration, validation rules, relationships, scope methods.

Backend Controllers — CRUD controllers with behavior configuration (list, form, reorder).

Menus — add navigation items to backend.

Versions — manage plugin versions and migrations.

Example: Creating Plugin via Builder

  1. Go to Backend → Builder → Select Plugin
  2. Database → Add Table → specify name, add columns
  3. Models → Add Model → select table, configure $fillable, rules
  4. Controllers → Add Controller → select model, configure list columns and form fields via YAML

Generated columns.yaml:

# models/Product/columns.yaml
columns:
    name:
        label: Product Name
        searchable: true
        sortable: true
    price:
        label: Price
        type: number
        sortable: true
    is_active:
        label: Active
        type: switch
    created_at:
        label: Created
        type: timesince

fields.yaml:

# models/Product/fields.yaml
fields:
    name:
        label: Product Name
        type: text
        required: true
        span: left
    slug:
        label: Slug
        type: text
        preset:
            field: name
            type: slug
        span: right
    price:
        label: Price (RUB)
        type: number
        span: left
    description:
        label: Description
        type: richeditor
        size: large
    image:
        label: Image
        type: fileupload
        mode: image
        imageWidth: 1200
        imageHeight: 630

tabs:
    fields:
        seo_title:
            tab: SEO
            label: SEO Title
            type: text
        seo_description:
            tab: SEO
            label: SEO Description
            type: textarea

Builder Limitations

Builder cannot: create custom components with non-trivial logic, configure complex Many-to-Many relationships, add custom widgets and behaviors. After skeleton generation — refine code manually.

Creating a CRUD plugin via Builder takes 2–4 hours. Subsequent manual refinement takes 1–3 days.