clevyr/nova-filemanager

Filemanager tool for Laravel Nova

v4.1.0 2023-10-12 20:34 UTC

README

A Filemanager Tool and Field for Laravel Nova 4

Filemanager Tool preview

FileManager Tool

Filemanager Field preview

FileManager Field

Clevyr Nova Filemanager

This package will be maintained and updated by Clevyr going forward. This package is currently compatible with Nova 3 and Laravel 9.

Docs

Forked from https://github.com/stepanenko3/nova-filemanager, which is a fork of https://github. com/InfinetyEs/Nova-Filemanager/

Installation

composer install clevyr/nova-filemanager

then

php artisan vendor:publish --tag=clevyr-nova-filemanager

Also, you must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

public function tools()
{
    return [
        // ...
        new \Clevyr\Filemanager\FilemanagerTool(),
    ];
}