fidum / laravel-nova-vapor-ui-link
Link for Laravel Nova to Vapor UI Dashboard.
Fund package maintenance!
dmason30
Installs: 116 931
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 1
Open Issues: 0
Language:Blade
Requires
- php: >=7.3.0
- laravel/nova: *
- laravel/vapor-ui: ^0.0|^1.0
Requires (Dev)
- psalm/plugin-laravel: ^1.4
- vimeo/psalm: ^4.0
README
Adds link to the Laravel Vapor UI Dashboard in the Laravel Nova sidebar.
Link automatically hidden if current user hasn't access to the Vapor UI Dashboard based on the viewVaporUI
gate defined
in your App\Providers\VaporUiServiceProvider::gate
method. In order to be consistent with Vapor UI it will always show
on local
and testing
environments. For more information, checkout the documentation.
Installation
At first, install via composer:
composer require fidum/laravel-nova-vapor-ui-link
Next up, register the link in the tools
method of the NovaServiceProvider
:
// app/Providers/NovaServiceProvider.php // ... public function tools() { return [ new \Fidum\NovaVaporUILink\VaporUILink, ]; }
Customization
By default, link label is - Vapor UI, if you prefer to customize it, just pass new label text into constructor:
// app/Providers/NovaServiceProvider.php public function tools() { return [ new \Fidum\NovaVaporUILink\VaporUILink('Custom Label'), // or \Fidum\NovaVaporUILink\VaporUILink::make('Custom Label') ]; }
If you need to customize link target
attribute (for example to open a page in a new tab), just pass it as second parameter into constructor.
A value should be without prepended underscore _
:
// app/Providers/NovaServiceProvider.php public function tools() { return [ new \Fidum\NovaVaporUILink\VaporUILink(null, 'blank'), // or \Fidum\NovaVaporUILink\VaporUILink::make()->target('blank'), ]; }
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email :author_email instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.