How to install laravel 9
https://tutorial101.blogspot.com/2022/02/how-to-install-laravel-9.html
Connecting our Database
open .env file root directory.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laraveldb
DB_USERNAME=root
DB_PASSWORD=
Install Yajra Datatables
Datatables Yajra
https://yajrabox.com/docs/laravel-datatables/master/installation
composer require yajra/laravel-datatables-oracle:"~9.0"
C:\xampp\htdocs\laravel\laravelproject>composer require yajra/laravel-datatables-oracle:"~9.0"
Database Migration
php artisan migrate
C:\xampp\htdocs\laravel\laravelproject>php artisan migrate
Migration table created successfully.
check database table
php artisan migrate
C:\xampp\htdocs\laravel\laravelproject>php artisan migrate
Migration table created successfully.
check database table
Create Dummy Data
php artisan tinker
C:\xampp\htdocs\laravel\laravelproject>php artisan tinker
After opening tinker run the following command for creating dummy records
User::factory()->count(500)->create()
Create Controller
php artisan make:controller UserController
C:\xampp\htdocs\laravel\laravelproject>php artisan make:controller UserController
change it with the following codes:
laravelproject\app\Http\Controllers\UserController.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 | //laravelproject\app\Http\Controllers\UserController.php <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\User; use DataTables; use Validator; use Illuminate\Support\Facades\Hash; class UserController extends Controller { public function index(Request $request ) { if ( $request ->ajax()) { $data = User::select( 'id' , 'name' , 'email' )->get(); return Datatables::of( $data )->addIndexColumn() ->addColumn( 'action' , function ( $data ){ $button = '<button type="button" name="edit" id="' . $data ->id. '" class="edit btn btn-primary btn-sm"> <i class="bi bi-pencil-square"></i>Edit</button>' ; $button .= ' <button type="button" name="edit" id="' . $data ->id. '" class="delete btn btn-danger btn-sm"> <i class="bi bi-backspace-reverse-fill"></i> Delete</button>' ; return $button ; }) ->make(true); } return view( 'users' ); } public function store(Request $request ) { $rules = array ( 'name' => 'required' , 'email' => 'required' , 'password' => 'required' ); $error = Validator::make( $request ->all(), $rules ); if ( $error ->fails()) { return response()->json([ 'errors' => $error ->errors()->all()]); } $pass = $request ->password; $postpass = Hash::make( $pass ); $form_data = array ( 'name' => $request ->name, 'email' => $request ->email, 'password' => $postpass ); User::create( $form_data ); return response()->json([ 'success' => 'Data Added successfully.' ]); } public function edit( $id ) { if (request()->ajax()) { $data = User::findOrFail( $id ); return response()->json([ 'result' => $data ]); } } public function update(Request $request ) { $rules = array ( 'name' => 'required' , 'email' => 'required' ); $error = Validator::make( $request ->all(), $rules ); if ( $error ->fails()) { return response()->json([ 'errors' => $error ->errors()->all()]); } $form_data = array ( 'name' => $request ->name, 'email' => $request ->email ); User::whereId( $request ->hidden_id)->update( $form_data ); return response()->json([ 'success' => 'Data is successfully updated' ]); } public function destroy( $id ) { $data = User::findOrFail( $id ); $data -> delete (); } } |
laravelproject\resources\views\users.blade.php
Bootstrap 5 https://getbootstrap.com/docs/5.0/getting-started/introduction/
https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css
Jquery
https://jquery.com/download/
CDN : jsDelivr CDN
https://www.jsdelivr.com/package/npm/jquery
https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js
https://icons.getbootstrap.com/#install
https://datatables.net/
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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | //laravelproject\resources\views\users.blade.php <!DOCTYPE html> <html> <head> <title>Laravel Datatables Yajra Server Side</title> <link rel= "stylesheet" href= "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" /> <link rel= "stylesheet" href= "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css" > <meta name= "csrf-token" content= "{{ csrf_token() }}" > </head> <body> <div class = "container" > <div class = "row" > <div class = "col-12 table-responsive" > <br /> <h3 align= "center" >Laravel 9 CRUD Datatables Yajra Server Side (Create, Read, Upate and Delete ) with Bootstrap 5 Modal</h3> <br /> <div align= "right" > <button type= "button" name= "create_record" id= "create_record" class = "btn btn-success" > <i class = "bi bi-plus-square" ></i> Add</button> </div> <br /> <table class = "table table-striped table-bordered user_datatable" > <thead> <tr> <th>ID</th> <th>Name</th> <th>Email</th> <th width= "180px" >Action</th> </tr> </thead> <tbody></tbody> </table> </div> </div> <div class = "modal fade" id= "formModal" tabindex= "-1" aria-labelledby= "ModalLabel" aria-hidden= "true" > <div class = "modal-dialog" > <div class = "modal-content" > <form method= "post" id= "sample_form" class = "form-horizontal" > <div class = "modal-header" > <h5 class = "modal-title" id= "ModalLabel" >Add New Record</h5> <button type= "button" class = "btn-close" data-bs-dismiss= "modal" aria-label= "Close" ></button> </div> <div class = "modal-body" > <span id= "form_result" ></span> <div class = "form-group" > <label>Name : </label> <input type= "text" name= "name" id= "name" class = "form-control" /> </div> <div class = "form-group" > <label>Email : </label> <input type= "email" name= "email" id= "email" class = "form-control" /> </div> <div class = "form-group editpass" > <label>Password : </label> <input type= "password" name= "password" id= "password" class = "form-control" /> </div> <input type= "hidden" name= "action" id= "action" value= "Add" /> <input type= "hidden" name= "hidden_id" id= "hidden_id" /> </div> <div class = "modal-footer" > <button type= "button" class = "btn btn-secondary" data-bs-dismiss= "modal" >Close</button> <input type= "submit" name= "action_button" id= "action_button" value= "Add" class = "btn btn-info" /> </div> </form> </div> </div> </div> <div class = "modal fade" id= "confirmModal" tabindex= "-1" aria-labelledby= "ModalLabel" aria-hidden= "true" > <div class = "modal-dialog" > <div class = "modal-content" > <form method= "post" id= "sample_form" class = "form-horizontal" > <div class = "modal-header" > <h5 class = "modal-title" id= "ModalLabel" >Confirmation</h5> <button type= "button" class = "btn-close" data-bs-dismiss= "modal" aria-label= "Close" ></button> </div> <div class = "modal-body" > <h4 align= "center" style= "margin:0;" >Are you sure you want to remove this data?</h4> </div> <div class = "modal-footer" > <button type= "button" class = "btn btn-secondary" data-bs-dismiss= "modal" >Close</button> <button type= "button" name= "ok_button" id= "ok_button" class = "btn btn-danger" >OK</button> </div> </form> </div> </div> </div> </div> </body> <script type= "text/javascript" > $(document).ready( function () { var table = $( '.user_datatable' ).DataTable({ processing: true, serverSide: true, ajax: "{{ route('users.index') }}" , columns: [ {data: 'id' , name: 'id' }, {data: 'name' , name: 'name' }, {data: 'email' , name: 'email' }, {data: 'action' , name: 'action' , orderable: false, searchable: false}, ] }); $( '#create_record' ).click( function (){ $( '.modal-title' ).text( 'Add New Record' ); $( '#action_button' ).val( 'Add' ); $( '#action' ).val( 'Add' ); $( '#form_result' ).html( '' ); $( '#formModal' ).modal( 'show' ); }); $( '#sample_form' ).on( 'submit' , function (event){ event.preventDefault(); var action_url = '' ; if ($( '#action' ).val() == 'Add' ) { action_url = "{{ route('users.store') }}" ; } if ($( '#action' ).val() == 'Edit' ) { action_url = "{{ route('users.update') }}" ; } $.ajax({ type: 'post' , headers: { 'X-CSRF-TOKEN' : $( 'meta[name="csrf-token"]' ).attr( 'content' )}, url: action_url, data:$(this).serialize(), dataType: 'json' , success: function (data) { console.log( 'success: ' +data); var html = '' ; if (data.errors) { html = '<div class="alert alert-danger">' ; for ( var count = 0; count < data.errors.length; count ++) { html += '<p>' + data.errors[ count ] + '</p>' ; } html += '</div>' ; } if (data.success) { html = '<div class="alert alert-success">' + data.success + '</div>' ; $( '#sample_form' )[0].reset(); $( '#user_table' ).DataTable().ajax.reload(); } $( '#form_result' ).html(html); }, error: function (data) { var errors = data.responseJSON; console.log(errors); } }); }); $(document).on( 'click' , '.edit' , function (event){ event.preventDefault(); var id = $(this).attr( 'id' ); alert(id); $( '#form_result' ).html( '' ); $.ajax({ url : "/users/edit/" +id+ "/" , headers: { 'X-CSRF-TOKEN' : $( 'meta[name="csrf-token"]' ).attr( 'content' )}, dataType: "json" , success: function (data) { console.log( 'success: ' +data); $( '#name' ).val(data.result.name); $( '#email' ).val(data.result.email); $( '#hidden_id' ).val(id); $( '.modal-title' ).text( 'Edit Record' ); $( '#action_button' ).val( 'Update' ); $( '#action' ).val( 'Edit' ); $( '.editpass' ).hide(); $( '#formModal' ).modal( 'show' ); }, error: function (data) { var errors = data.responseJSON; console.log(errors); } }) }); var user_id; $(document).on( 'click' , '.delete' , function (){ user_id = $(this).attr( 'id' ); $( '#confirmModal' ).modal( 'show' ); }); $( '#ok_button' ).click( function (){ $.ajax({ url: "users/destroy/" +user_id, beforeSend: function (){ $( '#ok_button' ).text( 'Deleting...' ); }, success: function (data) { setTimeout( function (){ $( '#confirmModal' ).modal( 'hide' ); $( '#user_table' ).DataTable().ajax.reload(); alert( 'Data Deleted' ); }, 2000); } }) }); }); </script> </html> |
laravelproject\routes\web.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | //laravelproject\routes\web.php <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\UserController; Route::get( '/' , function () { return view( 'welcome' ); }); Route::get( 'users' , [UserController:: class , 'index' ])->name( 'users.index' ); Route::post( 'users/store' , [UserController:: class , 'store' ])->name( 'users.store' ); Route::get( 'users/edit/{id}/' , [UserController:: class , 'edit' ]); Route::post( 'users/update' , [UserController:: class , 'update' ])->name( 'users.update' ); Route::get( 'users/destroy/{id}/' , [UserController:: class , 'destroy' ]); |
Starting Laravel development server: http://127.0.0.1:8000