PHPackages                             cloudstudio/card-extended - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cloudstudio/card-extended

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

cloudstudio/card-extended
=========================

A Laravel Nova card.

979.3k↓28%1[1 issues](https://github.com/cloudstudio/nova-card-extended/issues)PHP

Since May 1Pushed 7y agoCompare

[ Source](https://github.com/cloudstudio/nova-card-extended)[ Packagist](https://packagist.org/packages/cloudstudio/card-extended)[ RSS](/packages/cloudstudio-card-extended/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Nova Card Extended
==================

[](#nova-card-extended)

[![Total Downloads](https://camo.githubusercontent.com/ee938e36c37493d5ca446850333c50f4e8782a4de0de28c9c0becbab0e65550b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636c6f756473747564696f2f636172642d657874656e6465642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cloudstudio/card-extended)

### Installation

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require cloudstudio/card-extended
```

Next up, you must register the field with Nova. This is typically done in the resource file.

```
use Cloudstudio\CardExtended\CardExtended;

/**
     * Get the cards available for the request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
*/
public function cards(Request $request)
{
    return [
        (new CardExtended())
            ->view('cards.text')
            ->data(User::find(1))
            ->onlyOnDetail()
            ->width('full'),
    ];
}
```

First parameter is a typical blade view

```
resurces/views/cards/text.blade.php
```

Example view

```

        {{ $data->name }}

            Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus quia, nulla! Maiores et perferendis eaque, exercitationem praesentium nihil.

        #photography
        #travel
        #winter

```

##### Nova Card Preview

[](#nova-card-preview)

[![Captura de pantalla 2019-04-30 a las 18 19 08](https://user-images.githubusercontent.com/3589377/56976983-7718c080-6b74-11e9-8956-573d9915f6f9.png)](https://user-images.githubusercontent.com/3589377/56976983-7718c080-6b74-11e9-8956-573d9915f6f9.png)

( Preview with this blade )

Second parameter is the data, you can use strings, number, array, collection...

```
$data = User::all();
$data = Auth::user()->name;
$data = ['title' => 'Hello world']
$data = 'hello!';
$data = 1;
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Toni Soriano](https://github.com/cloudstudio)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity36

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3589377?v=4)[Toni Soriano](/maintainers/cloudstudio)[@cloudstudio](https://github.com/cloudstudio)

---

Top Contributors

[![cloudstudio](https://avatars.githubusercontent.com/u/3589377?v=4)](https://github.com/cloudstudio "cloudstudio (6 commits)")

### Embed Badge

![Health badge](/badges/cloudstudio-card-extended/health.svg)

```
[![Health](https://phpackages.com/badges/cloudstudio-card-extended/health.svg)](https://phpackages.com/packages/cloudstudio-card-extended)
```

PHPackages © 2026

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