Files
citrus-cms/resources/views/cron/cache-blade-spool-list.blade.php
2026-04-28 21:15:09 +03:00

16 lines
463 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// Summary View Cache Generator
// Bu cron görevi, summary blade viewını önbelleğe alır ve storage/app/cache/ dizinine kaydeder
use App\Jobs\CacheBladeViewJob;
// Önbelleğe alınacak view
$viewPath = 'admin-ajax.spool-list-no-cache';
$cacheFileName = 'spool-list';
// Job'u kuyruğa ekle
CacheBladeViewJob::dispatch($viewPath, $cacheFileName);
echo "{$viewPath} önbellek güncelleme işi kuyruğa eklendi: " . date('Y-m-d H:i:s') . "<br>";
?>