finoghentov / todo-module
A Laravel Nova tool.
v1.01
2020-02-17 13:53 UTC
Requires
- php: >=7.1.0
- laravel/nova: >=2.9
This package is not auto-updated.
Last update: 2024-11-05 10:41:17 UTC
README
Todo Component for your Laravel Nova Admin
About
With this Todo Component you will have your own todo tool in your Laravel Nova Admin Panel. You can create tables, cards and tasks. Also supports draggable.
Prerequisites
This tool requires:
"laravel/nova": ">=2.9"
Installing
Download via composer
composer require finoghentov/todo-module
Run migrations
php artisan migrate
Add Tool to your NovaServiceProvider
//NovaServiceProvider.php
public function tools()
{
return [
new TodoModule
];
}