Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beyondcode/nova-laravel-update-card
Check if you're running the latest Laravel version right from your Nova dashboard.
https://github.com/beyondcode/nova-laravel-update-card
card laravel nova
Last synced: 3 months ago
JSON representation
Check if you're running the latest Laravel version right from your Nova dashboard.
- Host: GitHub
- URL: https://github.com/beyondcode/nova-laravel-update-card
- Owner: beyondcode
- License: mit
- Archived: true
- Created: 2018-08-22T11:30:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T04:33:38.000Z (almost 5 years ago)
- Last Synced: 2024-05-21T17:10:09.069Z (6 months ago)
- Topics: card, laravel, nova
- Language: PHP
- Size: 80.1 KB
- Stars: 34
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-laravel-nova - Nova Laravel Update Card
README
# Nova Laravel Update Card
[![Latest Version on Packagist](https://img.shields.io/packagist/v/beyondcode/nova-laravel-update-card.svg?style=flat-square)](https://packagist.org/packages/beyondcode/nova-laravel-update-card)
[![Total Downloads](https://img.shields.io/packagist/dt/beyondcode/nova-laravel-update-card.svg?style=flat-square)](https://packagist.org/packages/beyondcode/nova-laravel-update-card)Check if you're running the latest Laravel version right from your Nova dashboard.
![tinker screenshot](https://beyondco.de/github/nova-laravel-update-card/screenshot.png)
## Installation
You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
```bash
composer require beyondcode/nova-laravel-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 \Beyondcode\LaravelUpdateCard\LaravelUpdateCard(),
];
}
```## Usage
Just visit your Nova dashboard and you'll get information about whether or not you're running the latest stable Laravel version.
### Testing
``` bash
composer test
```### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Marcel Pociot](https://github.com/mpociot)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.