Publishing Configuration
The configuration is published automatically during the installation process to config/larascord.php.
You can publish Larascord's configuration using the following commands:
php artisan larascord:publishphp artisan vendor:publish --provider="Jakyeru\Larascord\LarascordServiceProvider" --tag="config"You can also forcefully publish Larascord's configuration, overwriting any existing configuration:
php artisan larascord:publish --forcePublishing Migrations
You can publish Larascord's migrations using the following command:
php artisan vendor:publish --provider="Jakyeru\Larascord\LarascordServiceProvider" --tag="migrations"