메모장
1달동안 회사에서 작업한 것들 복습목록
New! Game
2019. 12. 12. 18:25
Laravel 작업기준
DB통계 엑셀 차트로 출력
통신사 아이디별 화면변경
모바일일때 화면 구성 완전히 다르게 만들기 confing('app.isMobile')
비동기로 CRUD 처리(프론트에서 팝업창) 테이블 추가할때마다 개별 id값 부여
안내글 프론트작업 부트스트랩사용, magin,pading,그리드, d-none
엑셀출력 코드
1
2
3
4
5
6
7
8
|
$exc = Excel::create($fileName,function($excel) use($search, $model){
$excel->sheet('sheet',function($sheet) use($search, $model){
});
})->download('xlsx');
return $exc;
|
cs |