Skip to main content
Version: v1.0-alpha.3

Installation

Install#

Via Composer

composer require myckhel/laravel-chat-system

Setup#

Publishing the config file#

php artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='config'

chat-system.php should be copied to the config directory

Publishing the migrations files#

php artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='migrations'

migration files should be copied to the database/migrations directory

Publishing the seeders files#

php artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='seeders'

seeders files should be copied to the database/seeders directory

Publishing the factories files#

php artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='factories'

factories files should be copied to the database/factories directory

Publishing all resources files#

php artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider"

all resources files should be copied to the respective directories