dolpstudio / image-module
此软件包的最新版本(0.1.3)没有提供许可证信息。
0.1.3
2023-01-05 18:08 UTC
Requires
- gumlet/php-image-resize: 2.0.*
This package is auto-updated.
Last update: 2023-11-05 20:23:02 UTC
README
安装
composer require dolpstudio/image-module
php artisan module:enable Image
php artisan module:migrate Image
使用此命令将存储路径链接到public文件夹
php artisan storage:link
可选命令
发布配置文件
php artisan module:publish-config
播种
php artisan module:seed Image
用法
视图 (.blade.php)
@include('image::img', [
'size' => 'thumbnail',
'id' => $imageId,
'style' => 'circular', // defined in config/image.php
'class' => 'rounded-circle avatar-xl', // extra classes
'alt' => "alt text"
])
@待办事项