Installation
Install
#
Via Composer
composer require myckhel/laravel-chat-system
Setup
#
#
Publishing the config filephp artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='config'
chat-system.php
should be copied to the config
directory
#
Publishing the migrations filesphp artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='migrations'
migration files should be copied to the database/migrations
directory
#
Publishing the seeders filesphp artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='seeders'
seeders files should be copied to the database/seeders
directory
#
Publishing the factories filesphp artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider" --tag='factories'
factories files should be copied to the database/factories
directory
#
Publishing all resources filesphp artisan vendor:publish --provider="Myckhel\ChatSystem\ChatSystemServiceProvider"
all resources files should be copied to the respective directories