Directory Structure

Laracord is based on Laravel Zero and has a very similar directory structure and build process.

The primary difference is the Commands directory consists of Discord commands instead of console commands. Instead, console commands are located in Console/Commands and the directory structure brings focus to the bot instead of CLI.

.
├── app
│   ├── Commands
│   ├── Console
│   │   └── Commands
│   ├── Events
│   ├── Models
│   ├── Providers
│   │   └── BotServiceProvider.php
│   ├── Services
│   ├── SlashCommands
│   └── Bot.php
├── bootstrap
│   └── app.php
├── config
│   ├── app.php
│   └── discord.php
├── database
│   └── migrations
└── laracord