digitalcloud/nova-page-tool is a Laravel package for a laravel nova page tool..
It currently has 10 GitHub stars and 348 downloads on Packagist (latest version 2.0.3).
Install it with composer require digitalcloud/nova-page-tool.
Discover more Laravel packages by digitalcloud
or browse all Laravel packages to compare alternatives.
Last updated
This tool allows you to create and manage web pages.
You can install the package via composer:
composer require digitalcloud/nova-page-tool
Next you need to create the database table by running the migrations:
php artisan migrate
You can publish the required assets with:
php artisan vendor:publish --provider="DigitalCloud\PageBuilderField\FieldServiceProvider" --tag=public
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\PageTool\PageTool;
// ....
public function tools()
{
return [
// ...
new PageTool(),
// ...
];
}