Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages
S

Single Value Card

This package is possibly abandoned. Please proceed with care.

Installation Instructions

composer require hapheus/nova-single-value-card

Readme

Nova Single Value Card

A Laravel Nova card that displays a single value.

Nova Single Value Cards

I really like to use Trend Metric Card from Laravel Nova to get a quick overview. But sometimes I want to have values in the cards that can't be represented by the standard trends. Of course there are already some card packages that show e.g. the total records in a card. The reason why I made this small package anyway is because I want to show all values and don't want to have a separate package for each case. If I want to display the total records I can simply pass Model::count() and that's it. And then everything is kept in the same style and does not mix.

And yes, I'm considering doing the same thing for the trends and just passing the class in the constructor.

Requirements

  • PHP 7.4 or higher
  • Nova 4

Installation

composer require hapheus/nova-single-value-card

Usage

namespace App\Nova\Dashboards;

use App\Nova\Metrics\LocationsPerDay;
use Hapheus\NovaSingleValueCard\NovaSingleValueCard;
use Illuminate\Support\Facades\App;
use Laravel\Nova\Dashboards\Main as Dashboard;

class Main extends Dashboard
{
    public function cards()
    {
        return [
            new NovaSingleValueCard('Environment', config('app.env')),
            new NovaSingleValueCard('Queue Size (default)', App::make('queue.connection')->size('default')),
            new LocationsPerDay,
        ];
    }
}

WIP

  • Implementation of simple colors for the text and the background

Screenshots

Back to Top
Added 3 years ago

This package is listed on the Packagist API, but has no stable tags.

Please note that the Packagist cache is pretty long, so some times you just need to check back in an hour.

Favorites

0 users favorited

Rating

N/A
(out of 5)
★★★★★
★★★★
★★★
★★
0 ratings

Contributors

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas