youbar / nova-difference
A Laravel Nova field to display the difference between to values
Package info
github.com/YouneselBarnoussi/nova-difference
Language:Vue
pkg:composer/youbar/nova-difference
1.0.0
2023-12-26 19:39 UTC
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2026-02-27 00:50:23 UTC
README
A Laravel Nova field to display the difference between to values. Especially useful with the use of Laravel Auditing
Installation
You can install the package via composer:
composer require youbar/nova-difference
Usage
Basic demo showing the power of this field:
use Youbar\Difference\Difference; class ExampleNovaResource extends Resource { public function fields(Request $request) { return [ Difference::make('Difference', 'old_values', 'new_values'), ]; } }
Demo
License
The MIT License (MIT). Please see License File for more information.

