< 라라벨 6 새기능 > https://laravel.kr/docs/6.x/releases * 유의적 버젼 , Semantic Versioning 6.x 계열은 호환성이 유지됨 * Ignition 을 통한 향상된 에러 페이지 https://github.com/facade/ignition * 개선...
PHP
코드루덴스 on 20-03-09
Local Setup 일단, Laravel 6.16 와 NuxtJS 2.11 를 사용한 “out of the box” Laravel 브로드캐스트 기능이 로컬 환경에서 작동하도록 설정 후, 전반적인 구현 디테일을 분석해 본다. 사용자가 브라우저로 접속할 fr...
Backend
whatsup::korea() on 20-03-09
우분트 패키지 리스트 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...
- 철자 체크 , language spelling check extension php7.4-enchant - 스펠링 체크, Enchant module for PHP https://www.php.net/manual/en/enchant.installation.php //-------------------------------- php.ini...
코드루덴스 on 20-03-08
1. 스키마생성 Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('phone'); $ta...
기능구현
38LARAVEL on 20-03-08
copyOfRange() 메소드는 전달받은 배열의 특정 범위에 해당하는 요소만을 새로운 배열로 복사하여 반환합니다. copyOfRange() 메소드는 첫 번째 매개변수로 복사의 대상이 될 원본 배열을 전달받습니다. 두 번째...
java 스터디
BONGDARI on 20-03-08