https://github.com/the-3labs-team/nova-custom-panel-assets
🎨 Our opinionated assets (CSS/JS) for Laravel Nova 4 improvements
https://github.com/the-3labs-team/nova-custom-panel-assets
laravel nova
Last synced: 3 months ago
JSON representation
🎨 Our opinionated assets (CSS/JS) for Laravel Nova 4 improvements
- Host: GitHub
- URL: https://github.com/the-3labs-team/nova-custom-panel-assets
- Owner: The-3Labs-Team
- Created: 2024-02-08T09:45:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-04T13:04:01.000Z (3 months ago)
- Last Synced: 2025-03-04T14:21:38.815Z (3 months ago)
- Topics: laravel, nova
- Language: CSS
- Homepage: https://3labs.it
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nova Custom Panel Assets
Our assets (CSS/JS) for Laravel Nova 4 improvements# Parsers
- csso for CSS
- terser for JS // todo# How to use
In `NovaServiceProvider`:
```php
public function boot()
{
// ...
Nova::style('nova-custom-panel-assets', 'https://cdn.jsdelivr.net/gh/The-3Labs-Team/nova-custom-panel-assets@1/dist/css/main.css');
Nova::script('nova-custom-panel-assets', 'https://cdn.jsdelivr.net/gh/The-3Labs-Team/nova-custom-panel-assets@1/dist/js/main.js');
}
```