LaravelPackages.net
Acme Inc.
Toggle sidebar
henryavila/laravel-nova-changelog

A Laravel Nova tool that display the content of the changelog file

18.003
0
v1.3.0
About henryavila/laravel-nova-changelog

henryavila/laravel-nova-changelog is a Laravel package for a laravel nova tool that display the content of the changelog file. It currently has 0 GitHub stars and 18.003 downloads on Packagist (latest version v1.3.0). Install it with composer require henryavila/laravel-nova-changelog. Discover more Laravel packages by henryavila or browse all Laravel packages to compare alternatives.

Last updated

Laravel Nova Changelog

A Laravel Nova 4 tool to display the content of the file CHANGELOG.md inside Laravel Nova panel.

Install

composer require henryavila/laravel-nova-changelog

Usage

Register the package in the tools method of the NovaServiceProvider class.

public function tools(): array
{
    return [
        //...
        new \HenryAvila\Changelog\Changelog(),    
    ];
}

if you use Laravel Nova 4 Custom Menu, you can use the following code when building your menu

\HenryAvila\Changelog\Changelog::make()->menu($request),

If you already don't have, create a CHANGELOG.md file in the root of your project.

Preview

The following CHANGELOG.md file

As principais mudanças neste projeto serão documentadas neste arquivo.

O formato deste arquivo é baseado em [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), e este projeto adere
ao [Controle de versão semântica](https://semver.org/spec/v2.0.0.html).

---
## v1.0.0 - 11/08/2022
Laravel 10
Laravel Nova 4
Vue 3 com Typescript
Tailwind CSS
Laravel Sanctum
E-mail tracking
Multi Tenant
Vários pacotes e personalizaçoes

Will be displayed in Laravel Nova as: image

Comments