PHP Laravel 6 – debug log

www/config/logging.php  파일의  ‘default’ => env(‘LOG_CHANNEL’, ‘daily’), 변경     ‘channels’ => [         ‘stack’ => [   […]

JAVA Spring – POI Excel download sample on Controller.java

import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.util.HSSFColor; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.xssf.streaming.SXSSFCell; import org.apache.poi.xssf.streaming.SXSSFRow; import org.apache.poi.xssf.streaming.SXSSFSheet; import org.apache.poi.xssf.streaming.SXSSFWorkbook; import java.io.OutputStream; import java.text.SimpleDateFormat;   @RequestMapping(value […]

PHP Laravel 6 – CRUD 기본 : 목록 , 수정 , 삭제 (4)

> 편집  TestCRUDController publicfunctionedit($id)     { $test = TestCRUD::findOrFail($id); returnview(‘test_view.modifyform’, compact(‘test’));     } >  view 파일 생성   modifyform.blade.php @extends(‘layout’) @section(‘content’) <style> .uper { margin-top: 40px;   } </style> <divclass=”card uper”> […]

PHP Laravel 6 – CRUD 기본 : 목록 , 확인 (3) 

– 목록 화면 ( 편집 파일 : TestCRUDController ) publicfunctionindex()     { $test = TestCRUD::all(); return view(‘test_view.index’, compact(‘test’));     } – View 파일 생성 ( /resources/views/test_view )  index.blade.php @extends(‘layout’) […]