jeroennoten / laravel-pages by JeroenNoten

Laravel pages
368
4
3
Package Data
Maintainer Username: JeroenNoten
Maintainer Contact: jeroennoten@me.com (Jeroen Noten)
Package Create Date: 2016-07-13
Package Last Update: 2017-05-23
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 15:01:12
Package Statistics
Total Downloads: 368
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 3
Total Forks: 4
Total Open Issues: 0

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