Download Laravel App
composer create-project --prefer-dist laravel/laravel my-app
C:\xampp\htdocs\laravel10project>composer create-project laravel/laravel laravel10project
Connecting our Database
open .env file root directory.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel10db
DB_USERNAME=root
DB_PASSWORD=
C:\xampp\htdocs\laravel\laravelproject>php artisan make:model Post -m
A new file named Post.php will be created in the app directory and database/migrations directory to generate the table in our database
app/Models/Post.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //app/Models/Post.php <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasFactory; protected $fillable = [ 'title' , 'description' ]; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | //database\migrations\create_posts_table.php <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create( 'posts' , function (Blueprint $table ) { $table ->id(); $table ->string( 'title' ); $table ->longText( 'description' ); $table ->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists( 'posts' ); } }; |
php artisan migrate
C:\xampp\htdocs\laravel\laravel10project>php artisan migrate
Create Controller
php artisan make:controller PostController
C:\xampp\htdocs\laravel\my-app>php artisan make:controller PostController
app/Http/Controllers/PostController.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | //app/Http/Controllers/PostController.php <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Post; use DOMDocument; use Illuminate\Support\Facades\File; use Illuminate\Support\Str; class PostController extends Controller { /** * Display a listing of the resource. */ public function index() { $posts = Post::all(); return view( 'index' ,compact( 'posts' )); } /** * Show the form for creating a new resource. */ public function create() { return view( 'create' ); } /** * Store a newly created resource in storage. */ public function store(Request $request ) { $description = $request ->description; $dom = new DOMDocument(); $dom ->loadHTML( $description ,9); $images = $dom ->getElementsByTagName( 'img' ); foreach ( $images as $key => $img ) { $data = base64_decode ( explode ( ',' , explode ( ';' , $img ->getAttribute( 'src' ))[1])[1]); $image_name = "/upload/" . time(). $key . '.png' ; file_put_contents (public_path(). $image_name , $data ); $img ->removeAttribute( 'src' ); $img ->setAttribute( 'src' , $image_name ); } $description = $dom ->saveHTML(); Post::create([ 'title' => $request ->title, 'description' => $description ]); return redirect( '/' ); } /** * Display the specified resource. */ public function show( $id ) { $post = Post::find( $id ); return view( 'show' ,compact( 'post' )); } /** * Show the form for editing the specified resource. */ public function edit( $id ) { $post = Post::find( $id ); return view( 'edit' ,compact( 'post' )); } /** * Update the specified resource in storage. */ public function update(Request $request , $id ) { $post = Post::find( $id ); $description = $request ->description; $dom = new DOMDocument(); $dom ->loadHTML( $description ,9); $images = $dom ->getElementsByTagName( 'img' ); foreach ( $images as $key => $img ) { // Check if the image is a new one if ( strpos ( $img ->getAttribute( 'src' ), 'data:image/' ) ===0) { $data = base64_decode ( explode ( ',' , explode ( ';' , $img ->getAttribute( 'src' ))[1])[1]); $image_name = "/upload/" . time(). $key . '.png' ; file_put_contents (public_path(). $image_name , $data ); $img ->removeAttribute( 'src' ); $img ->setAttribute( 'src' , $image_name ); } } $description = $dom ->saveHTML(); $post ->update([ 'title' => $request ->title, 'description' => $description ]); return redirect( '/' ); } /** * Remove the specified resource from storage. */ public function destroy( $id ) { $post = Post::find( $id ); $dom = new DOMDocument(); $dom ->loadHTML( $post ->description,9); $images = $dom ->getElementsByTagName( 'img' ); foreach ( $images as $key => $img ) { $src = $img ->getAttribute( 'src' ); $path = Str::of( $src )->after( '/' ); if (File::exists( $path )) { File:: delete ( $path ); } } $post -> delete (); return redirect()->back(); } } |
Summernote
https://summernote.org/getting-started/#installation
resources/views/index.blade.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | //resources/views/index.blade.php <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <meta http-equiv= "X-UA-Compatible" content= "ie=edge" > <title>Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</title> <link href= "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel= "stylesheet" > </head> <body> <div class = "container p-4 " > <div class = "text-center" > <h1>Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</h1> </div> <a href= "/create" class = "btn btn-md btn-primary" >Add new Post</a> <hr> <table class = "table table-striped" > <thead> <tr> <th scope= "col" >ID</th> <th scope= "col" >Title</th> <th scope= "col" >Action</th> </tr> </thead> <tbody> @ foreach ( $posts as $post ) <tr> <th scope= "row" >{{ $post ->id }}</th> <td>{{ $post ->title }}</td> <td> <a href= "show/{{ $post->id }}" class = "btn btn-success" >Show</a> <a href= "edit/{{ $post->id }}" class = "btn btn-info" >Edit</a> <a href= "delete/{{ $post->id }}" class = "btn btn-danger" > Delete </a> </td> </tr> @ endforeach </tbody> </table> </div> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | //resources/views/create.blade.php <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <meta http-equiv= "X-UA-Compatible" content= "ie=edge" > <title>Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</title> <link href= "https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel= "stylesheet" > <link href= "https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.css" rel= "stylesheet" > </head> <body> <div class = "container p-4 " > <div class = "row justify-content-md-center" > <div class = "col-md-12" > <div class = "text-center" > <h1 class = "" >Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</h1> </div> <form action= "/post" method= "post" > @csrf <label for = "" >Title:</label> <input type= "text" class = "form-control" name= "title" > <label for = "" >Description:</label> <textarea name= "description" id= "description" cols= "30" rows= "10" ></textarea> <button type= "submit" class = "btn btn-lg btn-primary" >Submit</button> </form> </div> </div> </div> <script> $( '#description' ).summernote({ placeholder: 'description...' , tabsize:2, height:300 }); </script> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | //resources/views/show.blade.php <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <meta http-equiv= "X-UA-Compatible" content= "ie=edge" > <title>Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</title> <link href= "https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel= "stylesheet" > </head> <body> <div class = "container p-4 " > <div class = "row justify-content-md-center" > <div class = "col-md-12" > <div class = "text-center" > <h1 class = "" >Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</h1> <hr> </div> <h3 class = "text-center" >{{ $post ->title }}</h3> <div> {!! $post ->description !!} </div> </div> </div> </div> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | //resources/views/edit.blade.php <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "UTF-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <meta http-equiv= "X-UA-Compatible" content= "ie=edge" > <title>Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</title> <link href= "https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel= "stylesheet" > <link href= "https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.css" rel= "stylesheet" > </head> <body> <div class = "container p-4 " > <div class = "row justify-content-md-center" > <div class = "col-md-12" > <div class = "text-center" > <h1 class = "" >Laravel 10 Summernote Text Editor with Image Upload CRUD (create read update and delete )</h1> </div> <form action= "/update/{{ $post->id }}" method= "post" > @csrf <label for = "" >Title:</label> <input type= "text" class = "form-control" name= "title" value= "{{ $post->title }}" > <label for = "" >Description:</label> <textarea name= "description" id= "description" cols= "30" rows= "10" >{{ $post ->description }}</textarea> <button type= "submit" class = "btn btn-lg btn-primary" >Submit</button> </form> </div> </div> </div> <script> $( '#description' ).summernote({ placeholder: 'description...' , tabsize:2, height:300 }); </script> </body> </html> |
routes/web.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | //routes/web.php <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\PostController; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider and all of them will | be assigned to the "web" middleware group. Make something great! | */ //Route::get('/', function () { // return view('welcome'); //}); Route::get( '/' ,[PostController:: class , 'index' ]); Route::get( 'create' ,[PostController:: class , 'create' ]); Route::post( 'post' ,[PostController:: class , 'store' ]); Route::get( 'show/{id}' ,[PostController:: class , 'show' ]); Route::get( 'edit/{id}' ,[PostController:: class , 'edit' ]); Route::post( 'update/{id}' ,[PostController:: class , 'update' ]); Route::get( 'delete/{id}' ,[PostController:: class , 'destroy' ]); |
Starting Laravel development server: http://127.0.0.1:8000