Laravel 5
No commit activity in last 2 years
No release in over 2 years
There's a lot of open issues
Soda Framework: CMS
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

soda-framework/eloquent-closure
^0.2
league/flysystem-aws-s3-v3
^1.0
doctrine/dbal
^2.5
 Project Readme

Soda CMS

A sweet PHP CMS solution built on Laravel!

Installation

Install easily using the Soda Installer or manually by following these steps:

1. Create new Laravel Project

composer create-project --prefer-dist laravel/laravel app-name "5.3.*"

or

laravel new app-name

2. Require Soda Framework

cd app-name

composer require soda-framework/cms

3. Integrate into Laravel

Add package to providers in /config/app.php

'providers' => [
    Soda\Cms\SodaServiceProvider::class,
]

4. Configure

php artisan soda:setup

or, manually set up database in your .env file.

5. Migrate & Seed

(optional) php artisan session:table

php artisan vendor:publish

php artisan optimize

php artisan soda:install