abrardev / inspire-widget
A Filament widget that displays daily inspirational quotes
Fund package maintenance!
AbrarDev
Requires
- php: ^8.1
- filament/filament: ^3.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
README
A fun little Filament widget that displays daily inspirational quotes.
Demo
Installation
You can install the package via composer:
composer require abrardev/inspire-widget
Optionally, you can publish the views using
php artisan vendor:publish --tag="inspire-widget-views"
Usage
Register Plugin
In your Filament panel provider, register the plugin as
use AbrarDev\InspireWidget\InspireWidgetPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ InspireWidgetPlugin::make() ]) }
Active Widget
You can activate widget on dashboard page as follows:
use AbrarDev\InspireWidget\Widget\InspireWidget; public function panel(Panel $panel): Panel { return $panel ->widgets([ Widgets\AccountWidget::class, Widgets\FilamentInfoWidget::class, InspireWidget::class, ]) }
InspireWidget will show on top since it has top sorting.
Customization
Providing your own quotes
You can use plugin to provide an array of your own quotes and Widget will pick them randomally as follows
use AbrarDev\InspireWidget\InspireWidgetPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ InspireWidgetPlugin::make() ->quotes([ 'The only limit to our realization of tomorrow is our doubts of today.', 'The future belongs to those who believe in the beauty of their dreams.', 'Do not wait to strike till the iron is hot, but make it hot by striking.', ]) ]) }
Providing your own image
You can also provide your own image. Make sure image is 2084 x 252
use AbrarDev\InspireWidget\InspireWidgetPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ InspireWidgetPlugin::make() ->image( new Image(asset('vendor/inspire-widget/images/patrick-carr-pAoo1Rs1Yy8-unsplash.jpg'), __('Photo by :author on :service') ) ) ]) }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.