AP
Size: a a a
AP
AP
XM
XM
AP
XM
XM
AP
XM
AP
В
В
location /img/ {
location ~* \.(?:jpg|jpeg|gif|png)$ {
try_files $uri $uri/ /index.php?$query_string;
}
}
В
phpВвывод картинки в шаблоне
public $mediasParams = [
'cover' => [
'default' => [
[
'name' => 'default',
'ratio' => 0,
'w' => 732,
],
],
],
];
bladeРесайз получается только если указать ширину принудительно (['w' => 732]). Есть ли способ избежать дублирования размеров картинок в модели и в шаблоне?
<picture>
<source media="(min-width: 1600px)" srcset="{{ $education->image('cover', 'default', ['w' => 732]) }}">
<img src="{{ $education->image('cover', 'default', ['w' => 767]) }}" alt="{{ $education->imageAltText('cover') }}">
</picture>
В
AY
AY
AY
S
AY