day4/tree-view

A Laravel Nova tool.

Installs: 87 477

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 13

Open Issues: 7

Language:Vue

0.5.1 2020-09-14 07:50 UTC

This package is auto-updated.

Last update: 2024-04-26 17:42:52 UTC


README

‼️ This repository is no longer maintained by the original author. PRs are still welcome, but active support is limited

Nova Tree View

Display a model in a Tree View with drag and drop functionality. Useful for category structure.

Setup

Make sure your model you wish to use in the tree structure has the following columns:

parent_id
is_active
order

Add the tool to NovaServiceProvider.php

Category Model Example:

Schema::create('categories', function (Blueprint $table) {
    $table->unsignedInteger('id')->autoIncrement();
    $table->string('title');
    $table->string('slug');
    $table->unsignedInteger('parent_id')->nullable();
    $table->boolean('is_active')->default(true);
    $table->tinyInteger('order')->default(0);
});

Usage

/app/Providers/NovaServiceProvider.php
...
use Day4\TreeView\TreeView;
    ...
    public function tools()
    {
        return [
            ...
            new TreeView([
             // ['NAME_IN_SIDEBAR', 'TABLE_NAME']
                ['Categories', 'categories']
            ])
        ];
    }