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