Check if you're running the latest Laravel version right from your Nova dashboard.
Next up, you must register the card with Nova. This is typically done in the cards
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvder.php
// ...
public function cards()
{
return [
// ...
new \Beyondcode\LaravelUpdateCard\LaravelUpdateCard(),
];
}
Just visit your Nova dashboard and you'll get information about whether or not you're running the latest stable Laravel version.