> ## Documentation Index
> Fetch the complete documentation index at: https://nova.laravel.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Cards

> Learn how to build custom cards for your Nova application.

## Overview

Cards are similar to resource tools, but are small, miniature tools that are typically displayed at the top of your dashboard, resource index, or resource detail pages. In fact, if you have used [Nova metrics](./../metrics/defining-metrics), you have already seen Nova cards. Custom Nova cards allow you to build your own, metric-sized tools.

## Defining Cards

Cards may be generated using the `nova:card` Artisan command. By default, all new cards will be placed in the `nova-components` directory of your application. When generating a card using the `nova:card` command, the card name you pass to the command should follow the Composer `vendor/package` format. So, if we were building a traffic analytics card, we might run the following command:

```shell theme={null}
php artisan nova:card acme/analytics
```

When generating a card, Nova will prompt you to install the card's NPM dependencies, compile its assets, and update your application's `composer.json` file. All custom cards are registered with your application as a Composer ["path" repository](https://getcomposer.org/doc/05-repositories#path).

Nova cards include all of the scaffolding necessary to build your card. Each card even contains its own `composer.json` file and is ready to be shared with the world on GitHub or the source control provider of your choice.

## Registering Cards

Nova cards may be registered in your resource's `cards` method. This method returns an array of cards available to the resource. To register your card, add your card to the array of cards returned by this method:

```php app/Nova/Post.php {3,13-18} theme={null}
namespace App\Nova;

use Acme\Analytics\Analytics;
use Laravel\Nova\Http\Requests\NovaRequest;

class Post extends Resource
{
    /**
     * Get the cards available for the resource.
     *
     * @return array<int, \Laravel\Nova\Card>
     */
    public function cards(NovaRequest $request)
    {
        return [
            new Analytics,
        ];
    }
}
```

### Authorization

If you would like to only expose a given card to certain users, you may invoke the `canSee` method when registering your card. The `canSee` method accepts a closure which should return `true` or `false`. The closure will receive the incoming HTTP request:

```php app/Nova/Post.php {13-15} theme={null}
use Acme\Analytics\Analytics;

// ...

/**
 * Get the cards available for the resource.
 *
 * @return array<int, \Laravel\Nova\Card>
 */
public function cards(NovaRequest $request)
{
    return [
        (new Analytics)->canSee(function ($request) {
            return false;
        }),
    ];
}
```

### Card Options

Often, you will need to allow the consumer's of your card to customize run-time configuration options on the card. You may do this by exposing methods on your card class. These methods may call the card's underlying `withMeta` method to add information to the card's metadata, which will be available within your `Card.vue` component. The `withMeta` method accepts an array of key / value options:

```php nova-components/Analytics/src/Analytics.php {14-17} theme={null}
namespace Acme\Analytics;

use Laravel\Nova\Card;

class Analytics extends Card
{
    // ...

    /**
     * Indicates that the analytics should show current visitors.
     *
     * @return $this
     */
    public function currentVisitors()
    {
        return $this->withMeta(['currentVisitors' => true]);
    }
}
```

After registering your custom card, don't forget to actually call any custom option methods you defined:

```php theme={null}
(new Acme\Analytics\Analytics)->currentVisitors(),
```

#### Accessing Card Options

Your card's `Card.vue` component receives a `card` Vue `prop`. This property provides access to any card options that may be available on the card:

```js theme={null}
const currentVisitors = this.card.currentVisitors;
```

## Building Cards

Each card generated by Nova includes its own service provider and "card" class. Using the `analytics` card as an example, the card class will be located at `src/Analytics.php`.

The card's service provider is also located within the `src` directory of the card, and is registered in the `extra` section of your card's `composer.json` file so that it will be auto-loaded by Laravel.

### Routing

Often, you will need to define Laravel routes that are called by your card via [Nova.request](./frontend#nova-requests). When Nova generates your card, it creates a `routes/api.php` routes file. If needed, you may use this file to define any routes your card requires.

All routes within this file are automatically defined inside a route group by your card's `CardServiceProvider`. The route group specifies that all routes within the group should receive a `/nova-vendor/card-name` prefix, where `card-name` is the "kebab-case" name of your card. So, for example, `/nova-vendor/analytics`. You are free to modify this route group definition, but take care to make sure your Nova card will co-exist with other Nova packages.

<Warning>
  When building routes for your card, you should **always** add authorization to these routes using Laravel gates or policies.
</Warning>

## Assets

When Nova generates your card, `resources/js` and `resources/css` directories are generated for you. These directories contain your card's JavaScript and CSS stylesheets. The primary files of interest in these directories are: `resources/js/components/Card.vue` and `resources/css/card.css`.

The `Card.vue` file is a single-file Vue component that contains your card's front-end. From this file, you are free to build your card however you want. Your card can make HTTP requests using Axios via [Nova.request](./frontend#nova-requests).

### Registering Assets

Your Nova card's service provider registers your card's compiled assets so that they will be available to the Nova front-end:

```php nova-components/Analytics/src/CardServiceProvider.php {13,15} theme={null}
/**
 * Bootstrap any application services.
 */
public function boot(): void
{
    parent::boot();

    $this->app->booted(function () {
        $this->routes();
    });

    Nova::serving(function (ServingNova $event) {
        Nova::mix('acme-analytic', __DIR__.'/../dist/mix-manifest.json');

        Nova::translations(__DIR__.'/../resources/lang/en/card.json');
    });
}
```

Alternatively you can also explicitly register `script` and `style` using the following code:

```diff theme={null}
Nova::serving(function (ServingNova $event) {
-   Nova::mix('acme-analytic', __DIR__.'/../dist/mix-manifest.json');
+   Nova::script('acme-analytic', __DIR__.'/../dist/js/card.js');
+   Nova::style('acme-analytic', __DIR__.'/../dist/css/card.css');
    Nova::translations(__DIR__.'/../resources/lang/en/card.json');
});
```

<Note>
  Your component is bootstrapped and registered in the `resources/js/card.js` file. You are free to modify this file or register additional components here as needed.
</Note>

### Compiling Assets

Your Nova resource card contains a `webpack.mix.js` file, which is generated when Nova creates your card. You may build your card using the NPM `dev` and `prod` commands:

```shell theme={null}
# Compile your assets for local development...
npm run dev

# Compile and minify your assets...
npm run prod
```

In addition, you may run the NPM `watch` command to auto-compile your assets when they are changed:

```shell theme={null}
npm run watch
```
