Configuration

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:publish
php 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 --force

Publishing Migrations

You can publish Larascord's migrations using the following command:

php artisan vendor:publish --provider="Jakyeru\Larascord\LarascordServiceProvider" --tag="migrations"