Pages is a static page system for Laravel applications.
To get started, use Composer to add the package to your project's dependencies:
composer require dmyers/laravel-pagesUse the 1.0 branch or the v1.* tags for Laravel 4 support.
Publish the default config file to your application so you can make modifications.
$ php artisan vendor:publishTo add a page, create a view in your resources directory at resources/views/pages and the URL will map to the path. You can nest folders and they will be included in the URL.
In your views there is a helper you can use to link to pages:
page_url('about');Or if you just want the path to the page:
page_path('about');