PHP code example of ziffmedia / laravel-cloudflare
1. Go to this page and download the library: Download ziffmedia/laravel-cloudflare library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ziffmedia / laravel-cloudflare example snippets
// app/Providers/NovaServiceProvider.php
use ZiffMedia\LaravelCloudflare\Nova\Tools\LaravelCloudflareTool;
public function tools()
{
return [
// ...,
LaravelCloudflareTool::make()
];
}
// app/Nova/
use ZiffMedia\LaravelCloudflare\Nova\Fields\ClearCacheButton;
public function fields(Request $request)
{
ClearCacheButton::make('Cloudflare Cache')
->purgeUrls(
['https://www.example.com', 'https://www.example.com/page']
)
->purgeTags(function () {
return $this->cloudflareTagsToClear(); // In order to use this method, you must setup Cache Tags (see below)
})
->hideWhenCreating()
}
// app/Http/Controllers/ArticleController.php
use ZiffMedia\LaravelCloudflare\Controllers\Concerns\CloudflareTaggable;
class ArticleController extends Controller
{
use CloudflareTaggable;
public function index()
{
// For a collection of models
$articles = Article::get();
$this->addCloudflareTagsFromCollection($articles); // This will add a tag to the page for each model in the collection
// For a single model
$article = Article::first();
$this->addCloudflareTagFromModel($article); // This will add a tag to the page for a single model
return view(...);
}
}
// app/Models/Article.php
use ZiffMedia\LaravelCloudflare\Models\Concerns\CloudflareTaggable;
class Article extends Model
{
use CloudflareTaggable;
// ...
}