finoghentov/todo-module

A Laravel Nova tool.

v1.01 2020-02-17 13:53 UTC

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
        ];
    }