marshmallow / simple-value-metric
A Laravel Nova card.
Installs: 9 431
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 3
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2024-10-24 10:43:57 UTC
README
This is a package to create a simple metric card.
Installation
composer require marshmallow/simple-value-metric
Usage
You can add this metric by adding the code like below to your cards
method.
// ... protected function cards() { (new SimpleValueMetric) ->title('Scored quotations') ->calculate( function ($simple_value) { return $simple_value->formattedValue(72) ->footer( '99% of the quotations are orders!' ); } )->help('72 of a total of 73 quotations are now orders :)'), // ... }
Security
If you discover any security related issues, please email stef@marshmallow.dev instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.