15 lines
274 B
PHP
15 lines
274 B
PHP
<?php
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
$cacheKey = 'repair-log';
|
|
$cacheTime = 3600; // 1 saat
|
|
|
|
$result = Cache::get($cacheKey);
|
|
|
|
if (!$result) {
|
|
$result = view('admin-ajax.repair-log')->render();
|
|
Cache::put($cacheKey, $result, $cacheTime);
|
|
}
|
|
|
|
echo $result;
|
|
?>
|