finoghentov/todo-module

A Laravel Nova tool.

Maintainers

Package info

gitlab.com/caster97/todo_module

Issues

pkg:composer/finoghentov/todo-module

Statistics

Installs: 430

Dependents: 0

Suggesters: 0

Stars: 0

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

This package is not auto-updated.

Last update: 2026-02-24 16:37:14 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
        ];
    }