Search result

[펌] MySQL 8.0 새기능

MySQL 8.0 새기능 https://blog.naver.com/theswice/221321015924 * NoSQL 지원 * SQL WINDOW 함수, Common Table, NOWAIT 및 SKIP LOCKED, 내림차순 인덱스, Grouping, 정규식, Character Sets, Cost Model 및 히스...

Web

[php] 라라벨 5.8 -> 6.x 버전 업그레이드

< 라라벨 6 새기능 > https://laravel.kr/docs/6.x/releases * 유의적 버젼 , Semantic Versioning 6.x 계열은 호환성이 유지됨 * Ignition 을 통한 향상된 에러 페이지 https://github.com/facade/ignition * 개선...

PHP

[php] 라라벨 5.8 -> 6.x 버전 업그레이드

< 라라벨 6 새기능 > https://laravel.kr/docs/6.x/releases * 유의적 버젼 , Semantic Versioning 6.x 계열은 호환성이 유지됨 * Ignition 을 통한 향상된 에러 페이지 https://github.com/facade/ignition * 개선...

PHP

Realtime broadcasting with Laravel and NuxtJS (2/4)

Local Setup 일단, Laravel 6.16 와 NuxtJS 2.11 를 사용한 “out of the box” Laravel 브로드캐스트 기능이 로컬 환경에서 작동하도록 설정 후, 전반적인 구현 디테일을 분석해 본다. 사용자가 브라우저로 접속할 fr...

Backend

[php] Extension 리스트 정리

우분트 패키지 리스트 apt-cache search php7.4 //----------- //기본 php7.4 - server-side, HTML-embedded scripting language (metapackage) php7.4-cli - command-line interpreter for the PHP scripting langu...

PHP

[php] Extension 리스트 정리

우분트 패키지 리스트 apt-cache search php7.4 //----------- //기본 php7.4 - server-side, HTML-embedded scripting language (metapackage) php7.4-cli - command-line interpreter for the PHP scripting langu...

PHP

[PHP] Enchant , 스펠링 체크 모듈 사용법

- 철자 체크 , language spelling check extension php7.4-enchant - 스펠링 체크, Enchant module for PHP https://www.php.net/manual/en/enchant.installation.php //-------------------------------- php.ini...

PHP

[PHP] Enchant , 스펠링 체크 모듈 사용법

- 철자 체크 , language spelling check extension php7.4-enchant - 스펠링 체크, Enchant module for PHP https://www.php.net/manual/en/enchant.installation.php //-------------------------------- php.ini...

PHP

로그인 유저타입으로 로그인후 경로변경

1. 스키마생성 Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('phone'); $ta...

기능구현

로그인 유저타입으로 로그인후 경로변경

1. 스키마생성 Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('phone'); $ta...

기능구현