nicolasbeauvais/nova-sendgrid-card

This package is abandoned and no longer maintained. No replacement package was suggested.

A Laravel Nova card for Sendgrid

v1.0 2019-05-05 15:07 UTC

README

Latest Version on Packagist Total Downloads

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

nova-sendgrid-card

Installation

You can install the package in to a Laravel app that uses Nova 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

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

<?php

return [
    'sendgrid' => [
        'key' => env('SENDGRID_API_KEY', ''),
    ],
];

Usage

The card only shows the total number of recipients for your Sendgrid account. Feel free to make a pull request to add more features.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email nicolasbeauvais1@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.