Files
citrus-cms/resources/views/admin-ajax/ndt-calculation-backlogs.blade.php
T
2026-04-28 21:15:09 +03:00

15 lines
328 B
PHP

<?php
use Illuminate\Support\Facades\Cache;
$cacheKey = 'ndt-calculation-backlogs';
$cacheTime = 900; // 15 dakika
$result = Cache::get($cacheKey);
if (!$result) {
$result = view('admin-ajax.ndt-calculation-no-cache', ['type' => 'backlogs'])->render();
Cache::put($cacheKey, $result, $cacheTime);
}
echo $result;
?>