
Laravel에 CKEditor를 설치하는 방법
2022-10-01 last update
5 minutes reading laravel ckeditor texteditor php오늘 이 게시물에서 우리는 라라벨에 ckeditor를 설치하는 방법을 볼 것입니다. CKEditor는 ckeditor를 사용하여 웹 페이지나 온라인 애플리케이션 내부에 직접 콘텐츠를 작성할 수 있는 리치 텍스트 편집기입니다. ckeditor는 이미지 추가, html 테이블 생성, 글꼴 크기 및 스타일 변경, 링크 추가, 스니펫 코드 추가 및 더 많은 기능과 같은 많은 기능을 제공합니다. 오픈 소스 편집기이며 사용자 정의 패키지를 만들고 공식 웹 사이트에서 다운로드할 수 있습니다.
그럼 라라벨에서 ckeditor를 설치하고 사용하는 방법을 알아보겠습니다.

다음을 좋아할 수도 있습니다.
Read More : Laravel 8 Google Recaptcha Example Read More : Import Export CSV/EXCEL File In Laravel Read More : How To Add Toastr Notification In Laravel
그럼 라라벨에서 ckeditor를 설치하고 사용하는 방법을 알아보겠습니다.
<html>
<head>
<meta charset="utf-8">
<title>How to Install CKEditor in Laravel - techsolutionstuff.com</title>
<script src="https://cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script>
</head>
<body>
<div class="row">
<div class="col-md-12">
<h1 style="text-align: center;">how to implement ckeditor in laravel - techsolutionstuff.com</h1>
<div class="col-md-12">
<textarea name="editor1"></textarea>
</div>
</div>
</div>
<script>
CKEDITOR.replace( 'editor1',{
height:350,
});
</script>
</body>
</html>

다음을 좋아할 수도 있습니다.