https://pusher.com/tutorials/chat-laravel/ https://appdividend.com/2022/03/01/laravel-vue-chat-application/ https://laracasts.com/discuss/channels/laravel/laravel-real-time-chat-app https://laracasts.com/discuss/channels/general-discussion/is-there-any-live-chat-plugins-for-laravel https://centrifugal.dev/blog/2021/12/14/laravel-multi-room-chat-tutorial https://getstream.io/blog/support-chat-laravel-react-hooks/
Create CSV File from Custom Array using Maatwebsite
https://www.itsolutionstuff.com/post/laravel-create-csv-file-from-custom-array-using-maatwebsiteexample.html https://docs.laravel-excel.com/2.1/export/array.html https://stackoverflow.com/questions/70234881/laravel-export-excel-from-array-return-empty-file https://laraveldaily.com/laravel-excel-3-0-export-custom-array-excel/
Export Excel Laravel
Check double data in postgresql
SELECTnama, email, COUNT() FROM m_pelanggan GROUP BY nama, email HAVING COUNT() > 1;
Laravel Upload File
How To Switch Between Multiple PHP Versions In Ubuntu
Switch Between Multiple PHP Versions To check the default installed version of PHP, run: $ php -v PHP 7.2.7-0ubuntu0.18.04.2 (cli) (built: Jul 4 2018 16:55:24) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.2.7-0ubuntu0.18.04.2, Copyright (c) 1999-2018, by Zend Technologies As you can … Continue reading How To Switch Between Multiple PHP Versions In Ubuntu
Select next sequence and update next sequence in mysql
SELECT Auto_increment FROM information_schema.tables WHERE table_name='the_table_you_want'; ALTER TABLE users AUTO_INCREMENT=1000;
How to have ‘git log’ show filenames
For full path names of changed files: git log --name-only For full path names and status of changed files: git log --name-status For abbreviated pathnames and a diffstat of changed files: git log --stat https://git-scm.com/docs/git-log
See Nextval Sequence and Change Nexval Sequence in Postgres
SELECT nextval('idsequencenextval'); ALTER SEQUENCE payments_id_seq RESTART WITH 22;
GIT STASH
A practical guide to using the git stash command The first thing to understand is why stashing changes in Git is important. Assume for a moment that Git doesn't have a command to stash changes. Suppose you are working on a repository with two branches, A and B. The A and B branches have diverged … Continue reading GIT STASH
