Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mydnic/nova-kustomer
Nova Tool for Laravel Kustomer
https://github.com/mydnic/nova-kustomer
Last synced: 3 months ago
JSON representation
Nova Tool for Laravel Kustomer
- Host: GitHub
- URL: https://github.com/mydnic/nova-kustomer
- Owner: mydnic
- License: mit
- Created: 2018-11-12T17:07:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-03T13:04:32.000Z (over 3 years ago)
- Last Synced: 2024-05-02T12:41:20.468Z (6 months ago)
- Language: Vue
- Homepage:
- Size: 2.83 MB
- Stars: 20
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Nova Kustomer Feedback
This package allows you to implement [Laravel Kustomer](https://github.com/mydnic/laravel-kustomer) into your Laravel Nova Dashboard.
![Dashboard index page](screenshot.png)
## Requirements
You must have installed and configured [Laravel Kustomer](https://github.com/mydnic/laravel-kustomer)
## Installation
You can install the nova tool in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
```bash
composer require mydnic/nova-kustomer
```Next up, you must register the tool with Nova. This is typically done in the `tools` method of the `NovaServiceProvider`.
```php
// in app/Providers/NovaServiceProvder.php// ...
public function tools()
{
return [
// ...
new \Mydnic\NovaKustomer\NovaKustomer,
];
}
```The MIT License (MIT). Please see [License File](LICENSE) for more information.