digitalcloud / nova-blog-tool
A Laravel Nova tool.
dev-master
2019-02-04 19:09 UTC
Requires
- php: >=7.1.0
- digitalcloud/multilingual-nova: ^1.0
- fourstacks/nova-checkboxes: ^0.1.0
- infinety-es/nova-filemanager: ^1.1
- spatie/laravel-sluggable: ^2.1
- spatie/laravel-translatable: *
- spatie/nova-tags-field: *
- yassi/nova-custom-form: dev-master
This package is auto-updated.
Last update: 2024-10-18 22:14:59 UTC
README
This tool allow you to create a simple blog for your website using Laravel Nova.
Installation
You can install the package via composer:
composer require digitalcloud/nova-blog-tool
Usage
You must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider, in app/Providers/NovaServiceProvider.php.
use DigitalCloud\NovaBlogTool\NovaBlogTool; // .... public function tools() { return [ // ... new NovaBlogTool(), // ... ]; }