Laravel 11 CKEditor Image Upload Example

Websolutionstuff | May-20-2024 | Categories : Laravel

Hello, laravel web developers! In this article, we'll see how to image upload in CKeditor 5 in laravel 11. CKEditor is a WYSIWYG rich text editor. which enables writing content directly inside of web pages or online applications.

Its core code is written in JavaScript and it is developed by CKSource. CKEditor is available under open source. CKEditor is a modern, feature-rich JavaScript text editor with a clean UI and perfect UX. Easily customizable to any use case.

Laravel 11 CKEditor Image Upload

laravel 11 CKEditor image upload

 

Inserting images into content created with CKEditor 5 is a very common task. In a properly configured rich-text editor, there are several ways for the end user to insert images:

  • Pasting an image from the clipboard
  • Dragging a file from the file system
  • Selecting an image through a file system dialog
  • Selecting an image from a media management tool in your application
  • Pasting a URL to an image, either into the editor dialog or directly into the content.

 

Step 1: Install Laravel 11 Application

In this article, we'll install laravel 11 using the following composer command.

composer create-project laravel/laravel laravel_11_example

 

Step 2: Define Route

Then, we'll define the routes to the web.php file for displaying the text editor and uploading images.

routes/web.php

<?php
  
use Illuminate\Support\Facades\Route;
  
use App\Http\Controllers\CkeditorController;
   
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
    
Route::get('ckeditor', [CkeditorController::class, 'index']);
Route::post('ckeditor/upload', [CkeditorController::class, 'upload'])->name('ckeditor.upload');

 

Step 3: Create Controller

Next, we'll create a CkeditorController.php file using the following command.

php artisan make:controller CkeditorController

app/Http/Controllers/CkeditorController.php

<?php
    
namespace App\Http\Controllers;
    
use Illuminate\Http\Request;
use Illuminate\View\View;
use Illuminate\Http\JsonResponse;
    
class CkeditorController extends Controller
{
    /**
     * Write code on Method
     *
     * @return response()
     */
    public function index(): View
    {
        return view('ckeditor');
    }
    
    /**
     * Write code on Method
     *
     * @return response()
     */
    public function upload(Request $request): JsonResponse
    {
        if ($request->hasFile('upload')) {
            $originName = $request->file('upload')->getClientOriginalName();
            $fileName = pathinfo($originName, PATHINFO_FILENAME);
            $extension = $request->file('upload')->getClientOriginalExtension();
            $fileName = $fileName . '_' . time() . '.' . $extension;
      
            $request->file('upload')->move(public_path('images'), $fileName);
      
            $url = asset('media/' . $fileName);
  
            return response()->json(['fileName' => $fileName, 'uploaded'=> 1, 'url' => $url]);
        }
    }
}

Note: Make sure you have created an images folder in your public directory because images will be stored in that folder.

 

Step 4: Create View File

Next, we'll create a ckeditor.blade.php file. So, add the following code to that file.

resources/views/ckeditor.blade.php

<!DOCTYPE html>
<html>
<head>
    <title>Laravel 11 CKEditor Image Upload Example - Websolutionstufff</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        .ck-editor__editable_inline {
            min-height: 300px;
        }
    </style>
</head>
<body>
    
<div class="container">
    <h1>Laravel 11 CKEditor Image Upload Example - Websolutionstuff</h1>
    <form>
        <div class="form-group">
            <strong>Title:</strong>
            <input type="text" name="title" class="form-control" placeholder="Title" value="{{ old('title') }}">
        </div><br>
        <div class="form-group">
            <strong>Description:</strong>
            <textarea name="editor" id="editor"></textarea>
        </div>
        <div class="form-group">
            <button class="btn btn-success" type="submit">Submit</button>
        </div>
    </form>
</div>
<script src="https://cdn.ckeditor.com/ckeditor5/37.1.0/classic/ckeditor.js"></script>
<script>
    ClassicEditor.create( document.querySelector( '#editor' ),{
        ckfinder: {
            uploadUrl: '{{route('ckeditor.upload').'?_token='.csrf_token()}}',
        }
    })
    .catch( error => {
            
    });
</script>
     
</body>
</html>

Output:

laravel 11 image upload ckeditor 5
 


You might also like:

Recommended Post
Featured Post
How to Handle Exception in PHP with Example
How to Handle Exception in PHP...

Hey there, Ever found yourself scratching your head over unexpected errors in your PHP code? Fret not, because today, we...

Read More

Dec-15-2023

Laravel 9 One To One Relationship Example
Laravel 9 One To One Relations...

  In this article, we will see laravel 9 one to one relationship example. Also, you can use one to one re...

Read More

Apr-01-2022

Laravel 11 Create Seeder with CSV File
Laravel 11 Create Seeder with...

Hello, Laravel developers! In this article, I'll show you how to create a seeder in Laravel 11 that imports data fro...

Read More

Sep-16-2024

How To Change Table Name Using Laravel 10 Migration
How To Change Table Name Using...

In this article, we will see how to change the table name using laravel 10 migration. Here, we will learn about the...

Read More

Apr-28-2023