novius / laravel-nova-page-manager
A Laravel Nova package to manage pages.
Installs: 6 412
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 2
Open Issues: 2
Requires
- php: >=8.2
- illuminate/support: ^10.0|^11.0
- laravel/nova: ^4.0
- novius/laravel-linkable: ^1.0
- novius/laravel-meta: ^1.0
- novius/laravel-nova-field-preview: ^2.0
- novius/laravel-nova-publishable: ^3.0
- novius/laravel-nova-translatable: ^1.0
- spatie/laravel-sluggable: ^3.4
Requires (Dev)
- laravel/pint: ^1.7
README
This package allows you to manage pages with custom templates.
Requirements
- PHP >= 8.2
- Laravel >= 10.0
- Laravel Nova >= 4.0
NOTE: These instructions are for Laravel >= 10.0 and PHP >= 8.2 If you are using prior version, please see the previous version's docs.
Installation
composer require novius/laravel-nova-page-manager
NOTE: These instructions are for Laravel Nova >= 4.0. If you are using prior version, please see the previous version's docs.
Validator translation
Please add this line to resource/lang/{locale}/validation.php
(on first level) :
// EN version : resource/lang/en/validation.php 'unique_page' => 'The field :attribute must be unique in this language.', // FR version : resource/lang/fr/validation.php 'unique_page' => 'Le champ :attribute doit ĂȘtre unique dans cette langue.',
Front Stuff
If you want a pre-generated front controller and route, you can run following command :
php artisan page-manager:publish-front
This command appends a route to routes/web.php
and creates a new App\Http\Controllers\FrontPageController
.
In Page templates use the documentation of laravel-meta to implement meta tags
Configuration
Some options that you can override are available.
php artisan vendor:publish --provider="Novius\LaravelNovaPageManager\LaravelNovaPageManagerServiceProvider" --tag="config"
Locales
You can add / remove any locale from config files.
Example if you want 2 languages (FR and EN):
// ... 'locales' => [ 'en' => 'English', 'fr' => 'French', ], // ...
Templates
To add a template, just add your custom class to templates
array in configuration file.
Your class must extend Novius\LaravelNovaPageManager\Templates\AbstractPageTemplate
.
Example :
In config/laravel-nova-page-manager.php
// ... 'templates' => [ \App\Nova\Templates\StandardTemplate::class, ],
In app/Nova/Templates/StandardTemplate.php
<?php namespace App\Nova\Templates; use Laravel\Nova\Fields\Trix; use Novius\LaravelNovaPageManager\Templates\AbstractPageTemplate; class StandardTemplate extends AbstractPageTemplate { public function templateName(): string { return trans('laravel-nova-page-manager::template.standard_template'); } public function templateUniqueKey(): string { return 'standard'; } public function fields(): array { return [ Trix::make(trans('laravel-nova-page-manager::template.field_content'), 'content'), ]; } }
Lint
Run php-cs with:
composer run-script lint
Contributing
Contributions are welcome!
Leave an issue on GitHub, or create a Pull Request.
Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.