A configurable version of the `Help card` that comes with Nova.
digital-creative/nova-welcome-card is a Laravel package for a configurable version of the `help card` that comes with nova..
It currently has 5 GitHub stars and 53.297 downloads on Packagist (latest version v0.1.0).
Install it with composer require digital-creative/nova-welcome-card.
Discover more Laravel packages by digital-creative
or browse all Laravel packages to compare alternatives.
Last updated
This is an enhanced version of the Help card that comes with Nova, offering additional configurability.
You can install the package via composer:
composer require digital-creative/nova-welcome-card
use DigitalCreative\NovaWelcomeCard\WelcomeCard;
class User extends Resource {
public function cards(NovaRequest $request): array
{
return [
WelcomeCard::make()
->title('...') // optional
->description('...') // optional
->addItem(icon: 'home', title: '...', content: '...') // need at least 2 for it to looks good
->addItem(icon: '<svg>...</svg>', title: '...', content: '...'),
];
}
}
Please give a ⭐️ if this project helped you!
Help card that comes with Nova.The MIT License (MIT). Please see License File for more information.