marianvlad / nova-ssl-card
A Laravel Nova card for SSL certificates.
Installs: 18 837
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 2
Forks: 3
Open Issues: 3
Requires
- php: >=7.1.0
- laravel/nova: *
- spatie/ssl-certificate: ^1.12
This package is not auto-updated.
Last update: 2024-10-28 00:40:12 UTC
README
Get details about SSL certificate inside a Nova card.
Installation
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, ]; }
Usage
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'), ]; }
License
The MIT License (MIT). Please see License File for more information.