HOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]

I have a table where I need to show title, image and option. I have already made a datatable jquery and called the data.  My table is as below. <table class=”table”>      <thead>                                                 <tr>                                                     <th>#</th>                                                   <th>Title</th>                                                     <th>Image</th>                                                     <th>Option</th>                                                 </tr>                                             </thead>                                             <tbody>                                             </tbody>                                         </table>   And … Read moreHOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]

How to implement Yajra Datatable in Laravel ?

Datatable is an excellent pacakage for those who wants to make a normal table interactive. The step to implement the Datatable is as follow. You can also follow the documentation of the laravel https://github.com/yajra/laravel-datatables 1) First of all go to your command prompt and your root folder and hit this command composer require yajra/laravel-datatables-oracle You … Read moreHow to implement Yajra Datatable in Laravel ?

HOW TO UPLAD IMAGE IN CKEDITOR BY USING LARAVEL

Previously We discussed how to install CKEditor in Laravel. You can click HERE to read the article. I have already installed CKEditor. Now I would like to upload the image in the textarea by CKEditor.   1. First of all create A route. Route::post(‘ckeditor/upload’, ‘CkeditorController@upload’)->name(‘ckeditor.upload’);   2. Then create Controller named as CKeditor Controller. In … Read moreHOW TO UPLAD IMAGE IN CKEDITOR BY USING LARAVEL