2017 © Pedro Peláez
 

library laravel-maki

image

startup-palace/laravel-maki

  • Tuesday, July 4, 2017
  • by startup-palace
  • Repository
  • 4 Watchers
  • 0 Stars
  • 352 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Laravel Maki 🍣

Create a CMS-like system with Laravel Maki, by using re-usable sections to display your content., (*1)

Requirements

Installation

  • Installation must be done through Composer: composer require startup-palace/laravel-maki
  • Add the service provider in your app/config.php:, (*2)

    'providers' => [
        ...
        \StartupPalace\Maki\Providers\ServiceProvider::class,
    ],
    
  • Publish the config: php artisan vendor:publish --provider="StartupPalace\Maki\Providers\ServiceProvider" --tag="config", (*3)

  • In your App\Providers\AppServiceProvider::boot() method, add the container bindings:, (*4)

    public function boot()
    {
        \StartupPalace\Maki\Maki::containerBindings();
    }
    
  • At the end of your App\Providers\RouteServiceProvider::map(), add the "catch-all" route:, (*5)

    public function map()
    {
        ...
        Maki::routes();
    }
    

The Versions

27/06 2017

dev-add-target-blank-handling

dev-add-target-blank-handling

  Sources   Download

MIT

The Requires

 

The Development Requires

by Killian Blais
by Maxime Pauvert

12/06 2017

dev-feature/add-entity-menus

dev-feature/add-entity-menus

  Sources   Download

MIT

The Requires

 

The Development Requires

by Killian Blais
by Maxime Pauvert