chat
-
# laravel 채팅 # 나 혼자만 알고 싶은 영어책 # 팔굽혀펴기 챌린지MakeTime 2021. 1. 20. 13:13
오늘의 하이라이트 1. laravel 채팅 - 비디오 업로드 및 타임태그 찍는 기능 마무리 2. 영어기초문법 - NOUNS chatper 01, 02 3. 팔굽혀펴기 챌린지 - 101 pushups 이 하이라이트를 위해 시간을 만들었는가? 예, 어떤 노력을 했다 초집중 수준(1~10) : 10 에너지 충전 수준(1~10) : 10 오늘 시도한 전술 1. 그 전술은 어땠는가? 내용 내일 시도할 전술 1. 감사한 순간 내용 잘한일 내용 못한일 내용 오늘 내 인생 한줄평 내용
-
2. Pusher 세팅(채팅)Laravel/Chat 2021. 1. 16. 22:12
# What? 웹소켓 라이브러리 # How? * 주의사항 : laravel 8.29 미만에서 현재 에러남. 8.29 이상으로 세팅필요 1. 라이브러리 설치 npm install --save laravel-echo pusher-js composer require pusher/pusher-php-server composer require beyondcode/laravel-websockets php artisan vendor:publish --provider="BeyondCode\LaravelWebSockets\WebSocketsServiceProvider" --tag="migrations" php artisan migrate php artisan vendor:publish --provider="BeyondC..
-
1. 기본 스키마 세팅Laravel/Chat 2021. 1. 15. 17:53
# What? - 채팅 구현을 위한 테이블 설계 # How? php artisan make:model -m Message php artisan make:model -m Chat php artisan make:resource UserResource php artisan make:resource MessageResource php artisan make:resource ChatResource php artisan make:resource UserCollection php artisan make:resource MessageCollection php artisan make:resource ChatCollection php artisan make:controller UserController php artisa..