5.x 에서 캐시 생성
Cache::put('key', 'value', $minutes);
6.x에서 캐시 생성
Cache::put('key', 'value', $seconds);
네??? 뭐라구요???
expire time이 분에서 초로 바뀌었다구요???
5에서 2분 으로 해놨던게 6에서 2초가 되었다....
Cache::put('key', 'value', $minutes);
Cache::put('key', 'value', $seconds);