Sayfa ilk açıldığında bazı resimler gelmiyor.
Console ekranında 500 hatası veriyor. fakat sayfayı yenileyince resimler geliyor Tüm resimlerin gelmesi için birkaç kez sayfayı yenilemem gerekiyor.
Resim gösterim kodu :
{{route('cacheImage', ['path'=>$v->resimyolu,'w'=>'476','h'=>'476','fit'=>'crop-center','fm'=>'webp','q'=>'90']) }}ImageController Dosyasıpublic function show(Filesystem $filesystem, $path)
{
$server = ServerFactory::create([
response => new LaravelResponseFactory(app(request)),
source => public_path(images),
cache => public_path(images),
cache_path_prefix => .cache,
base_url => img,
]);
return $server->getImageResponse($path, request()->all());
}