arudkovskiy / admin
此包的最新版本(v1.1)没有提供许可证信息。
管理仪表板
v1.1
2019-01-18 21:27 UTC
Requires
- cocur/slugify: ^3.1
- illuminate/database: ~5.5
- illuminate/http: 5.5.*
- illuminate/routing: 5.5.*
- illuminate/support: 5.5.*
- intervention/image: ^2.4
- symfony/console: ~3.3
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