App exemplifying how to implement a simplistic real-time public message broadcasting resource along with Pusher, Laravel Events, Laravel Channels, Laravel Echo and Vue.js.
Under the title, in the home page lays a quotation: Genius is one percent inspiration and ninety-nine percent perspiration. - Thomas Edison
This message can be update in real time, it means that all browsers or tabs running the home page of this app will be updated in real time if a new message is sent to:
/api/send-message/{your-message}
Install composer dependencies:
$ composer install
Instal npm dependencies and run the mix tasks:
$ npm install && npm run dev
On your .env file put your Pusher credentials:
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=
MIT