avast/thumbs

Avast thumbs 包

dev-master 2024-03-22 06:44 UTC

This package is auto-updated.

Last update: 2024-09-22 08:02:11 UTC


README

composer require avast/thumbs

php artisan avast-thumbs:install

路由

require __DIR__.'/thumbs.php';

模型特性

use \Avast\Thumbs\Traits\Thumbs;

用法

通过管理工具 -> Thumbs 创建缩略图

然后在 blade 中使用 {{ $model->thumb('[图片属性]', '[缩略图标记]') }}

对于多张图片

@if($it->thumbGallery('gallery'))
  @foreach($it->thumbGallery('gallery') as $image)
    <img src="{{ $it->thumb($image, 'big') }}">
  @endforeach
@endif