Laravel – jwt 비밀번호 재설정 이메일 발송 및 변경 > IT 기술백서
라라벨에서 api 용 인증모듈은 기본적으로 아래의 명령어로 스케폴딩 할 수 있다. [code] php artisan breeze:install api [/code] 하지만 나의 […]
라라벨에서 api 용 인증모듈은 기본적으로 아래의 명령어로 스케폴딩 할 수 있다. [code] php artisan breeze:install api [/code] 하지만 나의 […]
1. config/app.php [code] ‘locale’ => ‘ko’ [/code] 2. 언어팩 설치 [code] composer require laravel-lang/lang –dev [/code] 3. 언어팩
/plugins/axios.js [code] export default function ({ $axios, store }) { // http status code 가 200 대가 아니면
페이지를 새로고침했을때 사용자정보를 불러오는 소스이다. 서버렌더링에서도 되어야 해서 nuxtServerInit 에 정의했다. 쿠키 플러그인은 ssr 에서도 사용할 수 있는 cookie-universal-nuxt 사용했다.
[code] const parseCookie = (str) => str .split(‘;’) .map((v) => v.split(‘=’)) .reduce((acc, v)
nuxt 는 트랜스파일(비슷한 수준의 다른언어로 변환하는 것)할때 node_modules 는 무시한다. 그래서 /vee-validate/dist/rules 를 build 섹션에 포함해줘야 한다. nuxt.config.js 의
nuxt 에서 외부 스크립트를 로딩해야 할때에는 해당페이지에서 head() 를 이용하면 된다. 아래는 카카오맵api를 불러오는 소스의 일부분이다. [code] head()
with 를 사용한다. 예) 1번 유저정보와 글(posts), 포인트내역(points) 을 모두 가져오기 [code] $user = User::with([‘posts’, ‘points’])->find(1); [/code] 위
라라벨에서 groupBy 를 아래와 같이 했다. [code] User::select(‘name’, ‘age’, ‘addr’)->groupBy(‘name’)->get(); [/code] 실행하면 아래와 같은 에러가 발생한다. ‘users.age’ isn’t in