A Laravel Nova card for SSL certificates.
marianvlad/nova-ssl-card is a Laravel package for a laravel nova card for ssl certificates..
It currently has 12 GitHub stars and 20.036 downloads on Packagist (latest version v1.0.0).
Install it with composer require marianvlad/nova-ssl-card.
Discover more Laravel packages by marianvlad
or browse all Laravel packages to compare alternatives.
Last updated
Get details about SSL certificate inside a Nova card.

You can install the package in to a Laravel app that uses Nova via composer:
composer require marianvlad/nova-ssl-card
Next up, you must register the card Nova. This is typically done in the cards method of the NovaServiceProvider.
// in app/Providers/NovaServiceProvider.php
// ...
public function cards()
{
return [
// ...
new \Marianvlad\NovaSslCard\NovaSslCard,
];
}
By default the card will show certificate details for the current domain where you have installed Nova but you can configure for any domain name
// in app/Providers/NovaServiceProvider.php
// ...
public function cards()
{
return [
new \Marianvlad\NovaSslCard\NovaSslCard, // current domain
// or
new \Marianvlad\NovaSslCard\NovaSslCard('laravel.com'),
];
}
The MIT License (MIT). Please see License File for more information.