├── LICENSE.md ├── README.md ├── composer.json ├── config └── notes.php ├── database └── migrations │ └── 2016_10_00_000001_create_notes_table.php └── src ├── Database └── Migration.php ├── LaravelNotes.php ├── LaravelNotesServiceProvider.php ├── Models └── Note.php └── Traits ├── AuthoredNotes.php ├── HasManyNotes.php └── HasOneNote.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/composer.json -------------------------------------------------------------------------------- /config/notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/config/notes.php -------------------------------------------------------------------------------- /database/migrations/2016_10_00_000001_create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/database/migrations/2016_10_00_000001_create_notes_table.php -------------------------------------------------------------------------------- /src/Database/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/Database/Migration.php -------------------------------------------------------------------------------- /src/LaravelNotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/LaravelNotes.php -------------------------------------------------------------------------------- /src/LaravelNotesServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/LaravelNotesServiceProvider.php -------------------------------------------------------------------------------- /src/Models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/Models/Note.php -------------------------------------------------------------------------------- /src/Traits/AuthoredNotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/Traits/AuthoredNotes.php -------------------------------------------------------------------------------- /src/Traits/HasManyNotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/Traits/HasManyNotes.php -------------------------------------------------------------------------------- /src/Traits/HasOneNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARCANEDEV/LaravelNotes/HEAD/src/Traits/HasOneNote.php --------------------------------------------------------------------------------