There is no license information available for the latest version (v1.1) of this package.

Admin dashboard

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

This package is auto-updated.

Last update: 2024-02-29 03:51:07 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