digitalcloud/nova-blog-tool is a Laravel package for a laravel nova tool..
It currently has 20 GitHub stars and 174 downloads on Packagist.
Install it with composer require digitalcloud/nova-blog-tool.
Discover more Laravel packages by digitalcloud
or browse all Laravel packages to compare alternatives.
Last updated
This tool allow you to create a simple blog for your website using Laravel Nova.
You can install the package via composer:
composer require digitalcloud/nova-blog-tool
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(),
// ...
];
}