Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mostafaznv/nova-laracache

Nova LaraCache integrates the LaraCache package with Laravel Nova, providing a convenient tool to moderate and manage cache entities within the Laravel Nova.
https://github.com/mostafaznv/nova-laracache

cache laravel laravelnova nova orm

Last synced: 15 days ago
JSON representation

Nova LaraCache integrates the LaraCache package with Laravel Nova, providing a convenient tool to moderate and manage cache entities within the Laravel Nova.

Awesome Lists containing this project

README

        

# Nova LaraCache

[![GitHub license](https://img.shields.io/github/license/mostafaznv/nova-laracache?style=flat-square)](https://github.com/mostafaznv/nova-laracache/blob/master/LICENSE)
[![Packagist Downloads](https://img.shields.io/packagist/dt/mostafaznv/nova-laracache?style=flat-square&logo=packagist)](https://packagist.org/packages/mostafaznv/nova-laracache)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/mostafaznv/nova-laracache.svg?style=flat-square&logo=composer)](https://packagist.org/packages/mostafaznv/nova-laracache)

![nova-laracache](https://github.com/mostafaznv/laracache/assets/7619687/e4795f82-e043-4ebc-9cf2-36680b56a748)

Nova LaraCache is a robust Laravel Nova package that facilitates the seamless integration of the [LaraCache](https://github.com/mostafaznv/laracache) package with the Laravel Nova. With Nova LaraCache, users gain a powerful cache management tool within the familiar Laravel Nova interface.

This package extends the capabilities of LaraCache, offering a comprehensive set of tools to efficiently moderate and manage cache entities. Users can effortlessly monitor cache expiration dates, ensuring the freshness and accuracy of cached data. By reviewing cache entity contents, users can gain insights into the stored data and its relevance. Nova LaraCache also enables users to regenerate cache items, facilitating updates and refreshes of cached entities. Additionally, users have the flexibility to delete specific cache entries, providing control over cache management tasks.

With Nova LaraCache, users can take full advantage of cache management capabilities directly within the Laravel Nova environment. By offering an intuitive interface and seamless integration, Nova LaraCache enables users to efficiently moderate and manage cache entities, ultimately contributing to the performance and efficiency of their Laravel applications.

----
I am on an open-source journey 🚀, and I wish I could solely focus on my development path without worrying about my financial situation. However, as life is not perfect, I have to consider other factors.

Therefore, if you decide to use my packages, please kindly consider making a donation. Any amount, no matter how small, goes a long way and is greatly appreciated. 🍺

[![Donate](https://mostafaznv.github.io/donate/donate.svg)](https://mostafaznv.github.io/donate)

----

## Requirements:

- PHP 8.1 or higher
- LaraCache 2.3.2 or higher
- Laravel 10.4.1 or higher
- Nova 4.24 or higher

## Installation
> **Note** Ensure that you have already installed and configured the LaraCache package in your Laravel application. If you haven't done so, please refer to the LaraCache [documentation](https://github.com/mostafaznv/laracache) for instructions on installation and usage. **It's important to create cache entities for each model before proceeding with Nova LaraCache.**

To get started, you will need to install the following dependency:

```shell
composer require mostafaznv/nova-laracache
```

Then, you should publish vendor files and assets:
```shell
php artisan vendor:publish --provider="Mostafaznv\NovaLaraCache\NovaLaraCacheServiceProvider"
```

That's it, you're ready to go!

## Usage
After the package installation is complete, register the Nova LaraCache tool within your Laravel Nova application. Open the `NovaServiceProvider` class located at `app/Providers/NovaServiceProvider.php` and add the following line to the tools() method:

```php