Convert Figma logo to code with AI

octobercms logooctober

Self-hosted CMS platform based on the Laravel PHP Framework.

11,005
2,215
11,005
5

Top Related Projects

3,683

The core Laravel CMS Composer package

1,336

Free, open-source, self-hosted CMS platform based on the Laravel PHP Framework.

Quick Overview

October CMS is a self-hosted content management system (CMS) based on the Laravel PHP framework. It offers a flexible and extensible platform for building and managing websites, with a focus on simplicity and ease of use for both developers and content editors.

Pros

  • User-friendly backend interface for content management
  • Extensible plugin system for adding custom functionality
  • Built on Laravel, providing a solid foundation and familiar ecosystem
  • Active community and marketplace for themes and plugins

Cons

  • Steeper learning curve compared to some other CMS platforms
  • Limited built-in features, often requiring additional plugins
  • Smaller ecosystem compared to more established CMS options
  • Performance can be a concern for larger sites without proper optimization

Code Examples

  1. Registering a component:
class MyComponent extends \Cms\Classes\ComponentBase
{
    public function componentDetails()
    {
        return [
            'name'        => 'My Component',
            'description' => 'Does something awesome'
        ];
    }
}
  1. Creating a simple plugin:
namespace Acme\Blog;

use System\Classes\PluginBase;

class Plugin extends PluginBase
{
    public function registerComponents()
    {
        return [
            'Acme\Blog\Components\Posts' => 'blogPosts'
        ];
    }
}
  1. Using Twig in a layout file:
<!DOCTYPE html>
<html>
    <head>
        <title>{{ this.page.title }}</title>
        {% styles %}
    </head>
    <body>
        <header>
            {% partial 'site/header' %}
        </header>

        <section id="content">
            {% page %}
        </section>

        <footer>
            {% partial 'site/footer' %}
        </footer>
        
        {% scripts %}
    </body>
</html>

Getting Started

  1. Install October CMS using Composer:
composer create-project october/october myproject
  1. Set up your web server to point to the public directory.

  2. Navigate to your site and complete the installation wizard.

  3. Log in to the backend at /backend and start building your site.

For more detailed instructions, refer to the official documentation at https://octobercms.com/docs/setup/installation.

Competitor Comparisons

3,683

The core Laravel CMS Composer package

Pros of Statamic

  • Built on Laravel, providing a familiar and robust foundation for PHP developers
  • Flat-file CMS, offering simplicity and version control benefits
  • Extensive marketplace with add-ons and themes

Cons of Statamic

  • Commercial license required for most use cases
  • Steeper learning curve for developers new to Laravel
  • Smaller community compared to October CMS

Code Comparison

October CMS:

<?php namespace Acme\Blog\Components;

use Cms\Classes\ComponentBase;

class Posts extends ComponentBase
{
    public function componentDetails()
    {
        return [
            'name' => 'Blog Posts',
            'description' => 'Displays a list of blog posts'
        ];
    }
}

Statamic:

<?php

namespace App\Tags;

use Statamic\Tags\Tags;

class BlogPosts extends Tags
{
    public function index()
    {
        return $this->collection('blog')->limit(10)->get();
    }
}

Both CMSs use component-based architectures, but Statamic leverages Laravel's ecosystem more extensively. October CMS has a custom component system, while Statamic uses Laravel's service container and dependency injection patterns more prominently.

1,336

Free, open-source, self-hosted CMS platform based on the Laravel PHP Framework.

Pros of Winter

  • More active development and frequent updates
  • Improved plugin management system
  • Enhanced community-driven development process

Cons of Winter

  • Potential compatibility issues with some October plugins
  • Steeper learning curve for developers familiar with October

Code Comparison

Winter:

use Winter\Storm\Database\Model;

class Post extends Model
{
    protected $fillable = ['title', 'content'];
}

October:

use October\Rain\Database\Model;

class Post extends Model
{
    protected $fillable = ['title', 'content'];
}

The main difference in the code is the namespace used for the Model class. Winter uses Winter\Storm\Database\Model, while October uses October\Rain\Database\Model. This reflects the project's name change and namespace updates.

Both Winter and October are Laravel-based content management systems, with Winter being a fork of October. Winter aims to continue the development of the platform with a more open and community-driven approach. While the core functionality remains similar, Winter introduces improvements in plugin management and development processes. However, developers familiar with October may need to adapt to Winter's changes and potential compatibility issues with some plugins.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

October

October is a Content Management System (CMS) and web platform whose sole purpose is to make your development workflow simple again. It was born out of frustration with existing systems. We feel building websites has become a convoluted and confusing process that leaves developers unsatisfied. We want to turn you around to the simpler side and get back to basics.

October's mission is to show the world that web development is not rocket science.

Build Status Downloads Version License

Please note: October is open source but it is not free software. A license with a small fee is required for each website you build with October CMS.

Installing October

Instructions on how to install October can be found at the installation guide.

Quick Start Installation

If you have composer installed, run this in your terminal to install October CMS from command line. This will place the files in a directory named myoctober.

composer create-project october/october myoctober

If you plan on using a database, run this command inside the application directory.

php artisan october:install

Learning October

The best place to learn October CMS is by reading the documentation or following some tutorials.

You may also watch this introductory video. Make sure to check out our official YouTube channel. There is also the excellent video series by Watch & Learn.

For code examples of building with October CMS, visit the RainLab Plugin Suite or the October Demos Repo.

Coding Standards

Please follow the following guides and code standards:

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Development Team

October CMS was created by Alexey Bobkov and Samuel Georges, who both continue to develop the platform.

Foundation library

The CMS uses Laravel as a foundation PHP framework.

Contact

For announcements and updates:

To chat or hang out:

License

The October CMS platform is licensed software, see End User License Agreement (EULA) for more details.