Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterbrinck/nova-laravel-news
Add a card with the latest news from Laravel News
https://github.com/peterbrinck/nova-laravel-news
laravel laravel-news laravel-nova nova php vue
Last synced: 3 months ago
JSON representation
Add a card with the latest news from Laravel News
- Host: GitHub
- URL: https://github.com/peterbrinck/nova-laravel-news
- Owner: peterbrinck
- License: mit
- Created: 2018-08-23T08:18:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-27T14:46:45.000Z (almost 6 years ago)
- Last Synced: 2024-09-21T13:50:37.705Z (5 months ago)
- Topics: laravel, laravel-news, laravel-nova, nova, php, vue
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 17
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-laravel-nova - Nova Laravel News Cards
README
# Nova Laravel News Cards
Adds a card to the Nova dashboard with the latest news from Laravel News
Also at [Nova Packages](https://novapackages.com/packages/peterbrinck/nova-laravel-news)
## Installation
You can install the card in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
```bash
composer require peterbrinck/nova-laravel-news
```Next up, you must register the card with Nova. This is done in the `card` method of the `NovaServiceProvider`.
```php
// in app/Providers/NovaServiceProvder.php// ...
public function card()
{
return [
// ...
new \PeterBrinck\NovaLaravelNews\NovaLaravelNews(),
];
}
```## Credits
- [Peter Brinck](https://github.com/peterbrinck)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.