Purge your Cloudflare's cache in two clicks from a Laravel Nova dashboard card.
You can install the package in to a Laravel app that uses Laravel Nova via composer:
composer require zoxta/nova-cloudflare-card
Once the package is installed, you need to add the card to your NovaServiceProvider.php
file:
// in app/Providers/NovaServiceProvder.php
// ...
public function cards()
{
return [
// ...
new \Zoxta\NovaCloudflareCard\NovaCloudflareCard(),
];
}
You need to add your Cloudflare's credentials to config/services.php
file as shown:
'cloudflare' => [
'email' => env('CLOUDFLARE_EMAIL', ''), # your cloudflare email
'key' => env('CLOUDFLARE_KEY', ''), # your cloudflare api key, from https://dash.cloudflare.com/profile
'zone_id' => env('CLOUDFLARE_ZONE_ID', ''), # your domain's zone id, from the domain overview page
],
A new card will appear on your dashboard giving you the option to purge your Cloudflare's cache in two clicks whenever you need.
This card is released under the MIT License (MIT). Please see the included license file for more information.