ingvar/laravel-support

support comunication's package for laravel

dev-master 2019-06-12 08:43 UTC

This package is auto-updated.

Last update: 2024-09-12 20:24:50 UTC


README

  • php >= 7.0
  • Laravel >= 5.5

Installation

  1. Install package

    composer require ingvar/laravel-support
  2. (optional) Edit config/app.php :

    Add service providers

    Ingvar\Support\IngvarSupportServiceProvider::class,
  3. Publish the package's config and assets :

    php artisan vendor:publish --tag=igs_config
    php artisan vendor:publish --tag=igs_public
    php artisan vendor:publish --tag=igs_lang
    php artisan vendor:publish --tag=igs_views
  4. Run commands to clear cache :

    php artisan route:clear
    php artisan config:clear
  5. Ensure that the files & images directories (in config/lfm.php) are writable by your web server (run commands like chown or chmod).

  6. Create symbolic link :

    php artisan storage:link
  7. Edit APP_URL in .env.

What's next