Skip to content

Latest commit

 

History

History
80 lines (63 loc) · 4.61 KB

1-Installation-and-Setup.md

File metadata and controls

80 lines (63 loc) · 4.61 KB

1. Installation

Table of contents

  1. Installation and Setup
  2. Configuration
  3. Usage

Version Compatibility

Laravel Notify
Laravel v8.x Notify v7.x
Laravel v7.x Notify v6.x
Laravel v6.x Notify v5.x
Laravel v5.8 Notify v3.7.x Notify v4.0.x
Laravel v5.7 Notify v3.6.x
Laravel v5.6 Notify v3.5.x
Laravel v5.5 Notify v3.4.x
Laravel v5.4 Notify v3.3.x
Laravel v5.3 Notify v3.2.x
Laravel v5.2 Notify v3.2.x
Laravel v5.1 Notify v3.2.x
Laravel v5.0 Notify v3.2.x
Laravel v4.2 Notify v1.x

Composer

You can install this package via Composer by running this command: composer require arcanedev/notify.

Laravel

Setup

NOTE : The package will automatically register itself if you're using Laravel >= v5.5, so you can skip this section.

Once the package is installed, you can register the service provider in config/app.php in the providers array:

// config/app.php

'providers' => [
    ...
    Arcanedev\Notify\NotifyServiceProvider::class,
],

Artisan commands

To publish the config file, run this command:

php artisan vendor:publish --provider="Arcanedev\Notify\NotifyServiceProvider"