Real time database || web socket || chat application
Some Helpful Links : Tutorials: https://www.youtube.com/watch?v=H_4UubWE9NQ&t=193s Examples: https://github.com/hkp22/php-websocket-example Documentation: https://docs.beyondco.de/laravel-websockets/ Setup: #1 Steps: Install fresh Laravel laravel new blog setup .env file Setup: #2 ( Laravel WebSockets ) Install Laravel WebSockets composer require beyondcode/laravel-websockets publish the migration files php artisan vendor:publish --provider = "BeyondCode\LaravelWebSockets\WebSocketsServiceProvider" --tag = "migrations" Run the migrations php artisan migrate publish the WebSocket configuration file php artisan vendor:publish --provider = "BeyondCode\LaravelWebSockets\WebSocketsServiceProvider" --tag = "config" This is the default content of the config file that will be published as config/websockets.php : 'apps' = > [ [ 'id' = ...