uiarts/responsive-images

A Laravel package for generating responsive images and picture tags

Installs: 153

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/uiarts/responsive-images

2.0.0 2025-06-27 17:57 UTC

This package is auto-updated.

Last update: 2025-12-13 17:24:34 UTC


README

Usage:

$options = [
    'picture_title' => 'Image',
    'picture_alt' => 'Image alt',
    'size_pc' => '380, auto',
    'size_tablet' => '354, auto',
    'size_mobile' => '290, auto',
    'mode' => 'fit-x',
    'lazyload' => false,
//    'driver' => 'public_path',
     'image_attributes' => [
        'param' => 'value'
     ]
];

\UIArts\ResponsiveImages\Facades\ResponsiveImages::generate('image.jpg', $options)