LaravelPackages.net
Acme Inc.
Toggle sidebar
left-right/center

An innovative CMS for Laravel 5

267
0
0.0.1
About left-right/center

left-right/center is a Laravel package for an innovative cms for laravel 5. It currently has 0 GitHub stars and 267 downloads on Packagist (latest version 0.0.1). Install it with composer require left-right/center. Discover more Laravel packages by left-right or browse all Laravel packages to compare alternatives.

Last updated

Center

An innovative CMS for Laravel 5.

(walkthrough video to come)

Installation

  1. create a valid database connection

  2. In Terminal:

    composer require left-right/center:dev-master

  3. add this to $providers in config/app.php

     LeftRight\Center\CenterServiceProvider::class,
    
  4. add this to $middleware in App/Http/Kernel.php

     \LeftRight\Center\Middleware\Permissions::class,
    
  5. add this to $routeMiddleware in App/Http/Kernel.php

     'user' => \LeftRight\Center\Middleware\User::class,
    
  6. run the following commands

     php artisan vendor:publish
     php artisan center:refresh
    
  7. browse to your project's /center route to log in

Comments