novius / laravel-nova-news
A Laravel Nova package for news and blog posts management
Installs: 1 035
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 0
Open Issues: 1
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
- waynestate/nova-ckeditor4-field: ^1.1
Requires (Dev)
- laravel/pint: ^1.13
- orchestra/testbench: ^v9.2.0
- pestphp/pest: ^2.34
README
Laravel Nova News
Introduction
This Laravel Nova package allows you to manage Post news in your Laravel Nova admin panel.
You will be able to create posts, categories and tags.
You can attach multiple categories and tags to a post. Categories can be viewed as a listing page.
Requirements
- PHP >= 8.2
- Laravel Nova >= 4.0
- Laravel >= 10.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
You can install the package via composer:
composer require novius/laravel-nova-news
Register the tool in the tools
method of the NovaServiceProvider
:
// app/Providers/NovaServiceProvider.php public function tools() { return [ // ... new \Novius\LaravelNovaNews\LaravelNovaNews(), ]; }
Run migrations with:
php artisan migrate
Configuration
You can optionally publish the config file with:
php artisan vendor:publish --provider="Novius\LaravelNovaNews\LaravelNovaNewsServiceProvider" --tag="config"
This will allow you defined routes names and
This will allow you to:
- define the name of the routes and their parameter
- override resource or model class
- define locales used
// config/laravel-nova-news.php return [ // ... 'resources' => [ 'post' => \App\Nova\Post::class, ], ];
// app/Nova/Post.php namespace App\Nova; use Laravel\Nova\Fields\Text; class Post extends \Novius\LaravelNovaNews\Nova\NewsPost { public function mainFields(): array { return [ ...parent::mainFields(), Text::make('Subtitle'), ]; } }
Front Stuff
If you want a pre-generated front controller and routes, you can run following command :
php artisan news-manager:publish-front {--without-categories} {--without-tags}
This command appends routes to routes/web.php
and creates a new App\Http\Controllers\FrontNewsController
.
You can then customize your routes and your controller.
In views called by the controller use the documentation of laravel-meta to implement meta tags
Assets
Next we need to publish the Laravel Nova Translatable package's assets. We do this by running the following command:
php artisan vendor:publish --provider="Novius\LaravelNovaTranslatable\LaravelNovaTranslatableServiceProvider" --tag="public"
Migrations and lang files
If you want to customize the migrations or lang files, you can publish them with:
php artisan vendor:publish --provider="Novius\LaravelNovaNews\LaravelNovaNewsServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Novius\LaravelNovaNews\LaravelNovaNewsServiceProvider" --tag="lang"
Testing
Run the tests with:
composer test
Lint
Lint your code with Laravel Pint using:
composer lint
Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.