arudkovskiy / admin
Admin dashboard
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:CSS
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: 2025-03-29 00:41:33 UTC
README
Table of content
- [Intervention Image](#Intervention Image)
Libraries
Intervention Image
Installation using composer:
composer require intervention/image
Run artisan command:
php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravel5"
Configure graphic driver in config/image.php
Detailed instruction can be found on official website: http://image.intervention.io/
Slugify
Installation using composer:
composer require cocur/slugify
Laravel Scout MYSQL Driver
Installation using composer:
composer require yab/laravel-scout-mysql-driver
Add to .env:
SCOUT_DRIVER=mysql
Add to scout config file (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 ]
Read detailed documentation here