PHPackages                             yaroslawww/nova-list-card - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. yaroslawww/nova-list-card

Abandoned → [think.studio/nova-list-card](/?search=think.studio%2Fnova-list-card)Library[Admin Panels](/categories/admin)

yaroslawww/nova-list-card
=========================

Laravel Nova card with resources list

4.3.1(2y ago)02752MITPHPPHP ^8.1

Since May 28Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/nova-list-card)[ Packagist](https://packagist.org/packages/yaroslawww/nova-list-card)[ Docs](https://github.com/dev-think-one/nova-list-card)[ RSS](/packages/yaroslawww-nova-list-card/feed)WikiDiscussions main Synced 2d ago

READMEChangelogDependencies (7)Versions (13)Used By (0)

Nova List Card
==============

[](#nova-list-card)

[![Packagist License](https://camo.githubusercontent.com/5fe7097fae703622e022a7d1518d48868b0df4ecd3fdacdc7efb0da0501efa8c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6e6f76612d6c6973742d636172643f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/5fe7097fae703622e022a7d1518d48868b0df4ecd3fdacdc7efb0da0501efa8c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6e6f76612d6c6973742d636172643f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/1006a832994a6f71b39e145271370459ec3b74f5889f19ffb20268b06e053e8f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6e6f76612d6c6973742d63617264)](https://packagist.org/packages/think.studio/nova-list-card)[![Total Downloads](https://camo.githubusercontent.com/5fbe240642a7c5b5b28f232d7478de2b2a82df478fc9e37724572e66c83692e3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6e6f76612d6c6973742d63617264)](https://packagist.org/packages/think.studio/nova-list-card)[![Build Status](https://camo.githubusercontent.com/496c99132a09e5e784ac345bc6c0efd45508c0d09548a19072a2daf4f0583251/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6c6973742d636172642f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-list-card/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/e35aedaac0e0f4b99e4e3c70dbfc940308539cf0052123788a8815bbe44e000d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6c6973742d636172642f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-list-card/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/890f51ff7b7b13c8f2cfa87e3adeee0d7eb1c66d01c3f3fcb6d18aeea04118b3/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6c6973742d636172642f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-list-card/?branch=main)

[![nova-list-card](./docs/assets/images/nova-list-card.png)](./docs/assets/images/nova-list-card.png)

NovaPackageV1-V3V1-V3V4V4### Install

[](#install)

```
composer require think.studio/nova-list-card
```

### Usage

[](#usage)

[![nova-list-card](./docs/assets/images/list-card-count.png)](./docs/assets/images/list-card-count.png)

```
class FundsWithReportsCount extends ListCard
{
    public function __construct($component = null)
    {
        parent::__construct($component);

        $this->resource(\App\Nova\Resources\Fund::class)
            ->heading($this->name(), 'Reports')
            ->withCount('reports')
            ->orderBy('reports_count', 'desc')
            ->limit(100)
            ->value('reports_count');
    }

    public function cacheFor(): int|Carbon
    {
        return Carbon::now()->addMinutes(2);
    }
}
```

[![nova-list-card](./docs/assets/images/list-card-sum.png)](./docs/assets/images/list-card-sum.png)

```
class FundsWithReportIncomeSum extends ListCard
{
    public function __construct($component = null)
    {
        parent::__construct($component);

        $this->resource(\App\Nova\Resources\Fund::class)
            ->heading($this->name(), 'Total Income')
            ->withSum('reports', 'income')
            ->orderBy('reports_sum_income', 'desc')
            ->limit(100)
            ->value('reports_sum_income');
    }
}
```

[![nova-list-card](./docs/assets/images/list-card-query.png)](./docs/assets/images/list-card-query.png)

```
class FundsCustomList extends ListCard
{

    public function __construct($component = null)
    {
        parent::__construct($component);

        $this->resource(\App\Nova\Resources\Fund::class)
            ->heading($this->name())
            ->limit(100)
            ->timestamp('updated_at', 'm/Y')
            ->queryCallback(fn (Builder $q) => $q->where('publication_status', 'draft'));
    }

    public function name(): string
    {
        return 'Draft funds';
    }
}
```

[![nova-list-card](./docs/assets/images/list-card-format.png)](./docs/assets/images/list-card-format.png)

```
class FundsWithValueFormat extends ListCard
{
    public function __construct($component = null)
    {
        parent::__construct($component);

        $this->resource(\App\Nova\Resources\Fund::class)
            ->heading($this->name(), 'Created at')
            ->limit(100)
            ->timestamp('updated_at', 'm/Y')
            ->value('created_at', 'datetime', 'm/Y')
            ->classes('bg-yellow-300')
            ->noMaxHeight();
    }
}
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~70 days

Recently: every ~0 days

Total

12

Last Release

1040d ago

Major Versions

1.0.0 → 2.0.02021-09-01

2.0.0 → 3.0.02022-03-13

3.0.0 → 4.0.02022-07-09

PHP version history (3 changes)1.0.0PHP &gt;=7.4

2.0.0PHP &gt;=8.0

4.0.0PHP ^8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23663794?v=4)[yaroslawww](/maintainers/yaroslawww)[@yaroslawww](https://github.com/yaroslawww)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (16 commits)")

---

Tags

laravellistingcardnova

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-nova-list-card/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-nova-list-card/health.svg)](https://phpackages.com/packages/yaroslawww-nova-list-card)
```

###  Alternatives

[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)[genealabs/nova-passport-manager

A Laravel Nova tool.

2550.2k](/packages/genealabs-nova-passport-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
