https://github.com/skydiver/nova-update-card
Check if you're running the latest Laravel version right from your Nova dashboard.
https://github.com/skydiver/nova-update-card
Last synced: 4 months ago
JSON representation
Check if you're running the latest Laravel version right from your Nova dashboard.
- Host: GitHub
- URL: https://github.com/skydiver/nova-update-card
- Owner: skydiver
- License: mit
- Created: 2019-11-14T04:52:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:54:16.000Z (over 3 years ago)
- Last Synced: 2025-12-14T21:18:19.725Z (6 months ago)
- Language: Vue
- Homepage: https://packagist.org/packages/skydiver/nova-update-card
- Size: 2.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Nova Laravel Update Card
[](https://packagist.org/packages/skydiver/nova-update-card)
[](https://packagist.org/packages/skydiver/nova-update-card)
Check if you're running the latest versions of Laravel or Nova right from your dashboard.
> This is a fork of Nova [Laravel Update Card](https://github.com/beyondcode/nova-laravel-update-card). All the credits goes to original authors.

## Installation
You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
```bash
composer require skydiver/nova-update-card
```
Next up, you must register the card with Nova. This is typically done in the `cards` method of the `NovaServiceProvider`.
```php
// in app/Providers/NovaServiceProvder.php
// ...
public function cards()
{
return [
// ...
(new \Skydiver\NovaUpdateCard\LaravelUpdateCard)->width('1/2'),
(new \Skydiver\NovaUpdateCard\NovaUpdateCard)->width('1/2'),
];
}
```
## Usage
Just visit your Nova dashboard and you'll get information about your installed Laravel and Nova versions.
## Credits
[Laravel Update Card](https://github.com/beyondcode/nova-laravel-update-card)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.