Harings Rob
04/27/2022, 6:52 AMgetIndexTableColumns and adjust it from there.amargoCactus
04/27/2022, 6:53 AMHarings Rob
04/27/2022, 6:53 AMHarings Rob
04/27/2022, 6:54 AMamargoCactus
04/27/2022, 7:08 AMamargoCactus
04/27/2022, 7:09 AMifox
04/27/2022, 7:10 AMHarings Rob
04/27/2022, 7:14 AMifox
04/27/2022, 7:17 AMamargoCactus
04/27/2022, 7:18 AMHarings Rob
04/27/2022, 7:23 AMifox
04/27/2022, 7:24 AMamargoCactus
04/27/2022, 5:53 PMHarings Rob
04/27/2022, 5:53 PMamargoCactus
04/27/2022, 5:55 PMamargoCactus
04/27/2022, 5:56 PMdpadular
04/28/2022, 1:14 AMHarings Rob
04/28/2022, 6:34 AMHarings Rob
04/28/2022, 6:35 AMphp artisan twill:update on every deployment and gitignore the folders.Harings Rob
04/28/2022, 7:02 AMKormi
04/28/2022, 9:36 AM$images = $page
->imageObjects($page_key, 'default')
->map(function ($media) use ($page, $page_key) {
return @TwillImage::make($page, $page_key, $media)->crop('default');
})
It returns an html with this query strings
> ?fm=**jpg**&q=**80**&fit=max&crop=725%2C330%2C0%2C0&w=725
i need to use PNG and quality 100
How can i set that?Harings Rob
04/28/2022, 9:46 AMHarings Rob
04/28/2022, 9:46 AM'glide' => [
'default_params' => [
'fm' => 'webp',
'q' => '100',
'auto' => 'compress,format',
'fit' => 'min',
],
'lqip_default_params' => [
'fm' => 'webp',
'auto' => 'compress',
'blur' => 100,
'dpr' => 1,
],
],
The above is an example you can add to your twill.php config file.Harings Rob
04/28/2022, 9:47 AMifox
04/28/2022, 9:48 AMKormi
04/28/2022, 9:49 AMKormi
04/28/2022, 9:49 AMifox
04/28/2022, 10:31 AMifox
04/28/2022, 10:32 AMifox
04/28/2022, 10:36 AM