此包的最新版本(v1.1)没有提供许可证信息。

管理仪表板

v1.1 2019-01-18 21:27 UTC

This package is auto-updated.

Last update: 2024-09-29 05:28:08 UTC


README

目录

  • [干预图像](#干预图像)

干预图像

使用 composer 安装

composer require intervention/image

运行 artisan 命令

php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravel5"

config/image.php 中配置图形驱动器

详细的说明可以在官方网站上找到: http://image.intervention.io/

Slugify

使用 composer 安装

composer require cocur/slugify

Laravel Scout MYSQL 驱动程序

使用 composer 安装

composer require yab/laravel-scout-mysql-driver

添加到 .env 文件

SCOUT_DRIVER=mysql

添加到 scout 配置文件(scout.php)

    'mysql' => [
        'mode' => 'NATURAL_LANGUAGE',
        'model_directories' => [app_path()],
        'min_search_length' => 0,
        'min_fulltext_search_length' => 4,
        'min_fulltext_search_fallback' => 'LIKE',
        'query_expansion' => false
    ]

在此处阅读详细的文档 here