PHPackages                             nicolasbeauvais/nova-sendgrid-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. nicolasbeauvais/nova-sendgrid-card

AbandonedArchivedLibrary[Admin Panels](/categories/admin)

nicolasbeauvais/nova-sendgrid-card
==================================

A Laravel Nova card for Sendgrid

v1.0(7y ago)755[3 issues](https://github.com/nicolasbeauvais/nova-sendgrid-card/issues)MITPHPPHP &gt;=7.1.0

Since May 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/nicolasbeauvais/nova-sendgrid-card)[ Packagist](https://packagist.org/packages/nicolasbeauvais/nova-sendgrid-card)[ Docs](https://github.com/nicolasbeauvais/nova-sendgrid-card)[ RSS](/packages/nicolasbeauvais-nova-sendgrid-card/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (3)Dependencies (2)Versions (8)Used By (0)

Nova Sendgrid Cards
===================

[](#nova-sendgrid-cards)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f3a28ed34b16bc2ff7458a0d751acdbef078f2ea204e7a09e61e6e01bc209cc0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e69636f6c617362656175766169732f6e6f76612d73656e64677269642d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nicolasbeauvais/nova-sendgrid-card)[![Total Downloads](https://camo.githubusercontent.com/ad9282c6170952fb3354984c331d857f7b9e84893eebc8146fa0394d73532d27/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e69636f6c617362656175766169732f6e6f76612d73656e64677269642d636172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nicolasbeauvais/nova-sendgrid-card)

Get some insight on your Sendgrid recipient count with this easy to use Nova card.

[![nova-sendgrid-card](https://user-images.githubusercontent.com/2951704/57195941-32b46880-6f58-11e9-80b0-899892b5ff8e.png)](https://user-images.githubusercontent.com/2951704/57195941-32b46880-6f58-11e9-80b0-899892b5ff8e.png)

Installation
------------

[](#installation)

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

```
composer require nicolasbeauvais/nova-sendgrid-card
```

Next up, you must register the card Nova. This is typically done in the `tools` method of the `NovaServiceProvider`.

```
// in app/Providers/NovaServiceProvider.php

// ...

public function cards()
{
    return [
        // ...
        new \NicolasBeauvais\NovaSendgridCard\NovaSendgridCard,
    ];
}
```

Config
------

[](#config)

For this package to work you must define a sendgrid API key in your `config/services.php` like this:

```
