2017 © Pedro Peláez
 

library fabric

Fabric CMS base framework

image

theprivateer/fabric

Fabric CMS base framework

  • Wednesday, April 12, 2017
  • by theprivateer
  • Repository
  • 0 Watchers
  • 0 Stars
  • 230 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Fabric

An simple opinionated Content Management framework for your Laravel app

Important: Add the following to the end of the Service Providers array:, (*1)

Privateer\Fabric\Providers\FabricServiceProvider::class,, (*2)

Run command to publish the config files:, (*3)

php artisan vendor:publish --provider="Privateer\Fabric\Providers\FabricServiceProvider" --tag=config --force, (*4)

Then migrate:, (*5)

php artisan migrate, (*6)

To Enable redirects, register the following:, (*7)

//app/Http/Kernel.php

protected $middleware = [
       ...
       \Spatie\MissingPageRedirector\RedirectsMissingPages::class,
    ],

Add middleware to 'web' group:, (*8)

//app/Http/Kernel.php
'web' => [
            ...
            \Privateer\Fabric\Http\Middleware\GetSite::class,
        ],

The Versions