Skip to content

Latest commit

 

History

History
77 lines (60 loc) · 4.16 KB

1-Installation-and-Setup.md

File metadata and controls

77 lines (60 loc) · 4.16 KB

1. Installation

Table of contents

  1. Installation and Setup
  2. Configuration
  3. Usage

Version Compatibility

Laravel Laravel Notes
Laravel v9.x Laravel Notes v9.x
Laravel v8.x Laravel Notes v8.x
Laravel v7.x Laravel Notes v7.x
Laravel v6.x Laravel Notes v6.x
Laravel v5.8 Laravel Notes v5.x
Laravel v5.7 Laravel Notes v4.x
Laravel v5.6 Laravel Notes v3.x
Laravel v5.5 Laravel Notes v2.x
Laravel v5.4 Laravel Notes v1.x
Laravel v5.3 Laravel Notes v0.x
Laravel v5.2 Laravel Notes v0.x
Laravel v5.1 Laravel Notes v0.x

Composer

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

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\LaravelNotes\LaravelNotesServiceProvider::class,
],

Artisan commands

To publish the notes.php config file, run this command:

php artisan vendor:publish --provider="Arcanedev\LaravelNotes\LaravelNotesServiceProvider"