15 lines
328 B
PHP
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;
|
|
?>
|