LaravelPackages.net
Acme Inc.
Toggle sidebar
jeroennoten/laravel-pages

Laravel pages

371
4
v1.9.1
About jeroennoten/laravel-pages

jeroennoten/laravel-pages is a Laravel package for laravel pages. It currently has 4 GitHub stars and 371 downloads on Packagist (latest version v1.9.1). Install it with composer require jeroennoten/laravel-pages. Discover more Laravel packages by jeroennoten or browse all Laravel packages to compare alternatives.

Last updated

Installation

  1. Require the package using composer:

    composer require jeroennoten/laravel-pages
    
  2. Add the service provider at the end of the providers array in config/app.php:

    JeroenNoten\LaravelPages\ServiceProvider::class,
    
  3. Publish the configuration:

    php artisan vendor:publish --tag=pages-config
    
  4. Publish the public assets:

    php artisan vendor:publish --tag=pages-public
    
  5. Publish the public assets of CkEditor:

    php artisan vendor:publish --tag=ckeditor-assets
    

Updating

Publish the public assets:

php artisan vendor:publish --tag=pages-public --force
Comments