szihaj/laravel-static-pages

Static page package for Laravel.

Installs: 38

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:helper

pkg:composer/szihaj/laravel-static-pages

0.1 2018-05-27 22:00 UTC

This package is not auto-updated.

Last update: 2025-12-07 02:14:22 UTC


README

Installation

$ composer require szihaj/laravel-static-pages

Add the Service Provider to your config/app.php file like so:

...
szihaj\LaravelStaticPages\StaticPageProvider::class,

Add the Facade to your aliases in config/app.php

'StaticPages' => szihaj\LaravelStaticPages\Facades\StaticPage::class,

Finally, publish the migrations, and run them:

$ php artisan vendor:publish --tag=migrations
$ php artisan migrate