Тёмный

Laravel 8 Datatable Tutorial in Hindi (Server Side/Ajax) With Source Code 

PHP TECH LIFE
Подписаться 13 тыс.
Просмотров 17 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 33   
@PHPTechLife
@PHPTechLife Год назад
Please subscribe to my channel and hit the notification bell, so you don’t miss any of my new videos. ➡ bit.ly/PHPTechLife 👇 Follow Me On Social Media: facebook.com/phptechlife instagram.com/mohitsingh_... twitter.com/phptechlife 🔶 My Recommended Hosting Hostinger: www.hostg.xyz/SHAhR HostArmada: bit.ly/3p5ZmTO BlueHost: bluehost.sjv.io/6bNebK 🔶 RU-vid Equipments:- 1) 2020 Apple Mac Mini ♦︎ amzn.to/3yuisa9 2) WD Elements USB 3.0 1TB Portable External Hard Drive ♦︎ amzn.to/3Ro8Ru6 3) JBL Headphone ♦︎ amzn.to/3AKz7Jg 4) Dell E2420HS 24 Inch (60.9 cm) FHD (1920 x 1080) LED Backlit LCD IPS Monitor amzn.to/3RojihB 5) boAt Rockerz 450 ♦︎ amzn.to/3PdNR7M 🔶 Microphone 1) Boya BYM1 Omnidirectional Lavalier Condenser Microphone ♦︎ amzn.to/3ySYk32 2) Maono AU-903 Portable USB Microphone ♦︎ amzn.to/3c28WDO 🔶 Keyboard 1) Logitech K120 Wired Keyboard for Windows ♦︎ amzn.to/3nV2bWQ 2) HP K500F Gaming Keyboard ♦︎ amzn.to/3yuVlMT 3) Apple Magic Keyboard with Numeric Keypad ♦︎ amzn.to/3yvuakW
@debashishjena8174
@debashishjena8174 Год назад
good / simplest informatics for ajax datatable 👍
@manojjalal9381
@manojjalal9381 8 месяцев назад
I am your fan. Aap kabhi kabhi live video bhe banao sir. Hum log bhe apne guru ko dekh sake
@PHPTechLife
@PHPTechLife 8 месяцев назад
sure, bhai
@snehaadhav10
@snehaadhav10 Год назад
thank you nicely explained. subscribed🙂
@PHPTechLife
@PHPTechLife Год назад
Thanks for your support.
@miralsanepara2098
@miralsanepara2098 2 года назад
if not begginer then start watching from 10:34 main datatable coding
@KarishmaSharma-k8n
@KarishmaSharma-k8n Год назад
nice explanation thank you
@PHPTechLife
@PHPTechLife Год назад
Glad it helped you.
@easypeasy9107
@easypeasy9107 6 месяцев назад
how to custom filters like city and state
@anuj63321
@anuj63321 Год назад
Hlw sir, I am using laravel with mongodb can i use same datatable for myproject??
@PHPTechLife
@PHPTechLife Год назад
I didn't used laravel with mongodb, if it supports mongodb then it will definitely work
@bhargavramani8006
@bhargavramani8006 2 года назад
sir vs code me terminal default aa ta he artisan command aap use kashk te ho
@PHPTechLife
@PHPTechLife 2 года назад
ok
@AtanuMarick
@AtanuMarick Год назад
can we use use cdn if not using that files ??
@PHPTechLife
@PHPTechLife Год назад
Yes, you can use CDN
@YogeshPatil-ip8fy
@YogeshPatil-ip8fy 2 года назад
Sir 50 lakh records fast load ho jayenge kya?
@PHPTechLife
@PHPTechLife 2 года назад
that's not a good practice to fetch and show a large number of records on a single page, for better use pagination and select limited no of records, and in this example that was clearly described.
@ankithamirani4491
@ankithamirani4491 10 месяцев назад
php series achhi he but is vale video me maja nahi aaya..!! kyuki json file ka use karke direct copy past kar rahe ho..## or aapne source code bhi de diya achhi baat hai but isme sikhne ko nahi mil raha he..$$ to mera suggestion ye he ki isi datatable or pagination vale video ko merge karke ek simple todo list create karke dikha do jisme ek name ho or ek product ho or upar ek searchbar jisme se ham products ko search kar paye..@@ or niche pagination...^^ esa kuchh bana kar agar aap explain karte ho to sayad aapka video or bhi informative ban sakta hai..// i know video thoda long hoga but trust me aap bahot kuchh isme sikha sakte ho..++
@PHPTechLife
@PHPTechLife 10 месяцев назад
Thanks for your suggestion bro 👍
@darjipavan5112
@darjipavan5112 2 года назад
Sir, laravel ke all topic cover karna please sir , and sir api kaise banate hai wo bhi batana and sir project bhi ho sake to please Sir banaiye 🙏✌
@PHPTechLife
@PHPTechLife 2 года назад
Sure
@abhishekmukherjee5568
@abhishekmukherjee5568 2 года назад
Yes sir please make a video on how to create api's also create a laravel project.. Please sir 🙏
@aishwaryjoshi3270
@aishwaryjoshi3270 2 года назад
Sir Isme edit delete button kese la gaye?
@PHPTechLife
@PHPTechLife 2 года назад
did you saw the whole video
@AtanuMarick
@AtanuMarick Год назад
$(document).ready(function(){ $('#datatable').DataTable({ processing: true, serverSide: true, order: [[ 0, "desc" ]], ajax: "{{ url('quotes-data') }}", columns: [ { data: 'first_name' }, { data: 'last_name' }, { data: 'email' }, { data: 'phone' }, { data: 'company_name' }, { data: 'city' }, { data: 'no_of_parking_spots' }, { data:null, render:function(data,row,type){ return `Delete`; } } ] });
@sufiyanjaved1553
@sufiyanjaved1553 2 года назад
sir data ke saath action ke liye anchor or button tag legana ho toh
@PHPTechLife
@PHPTechLife 2 года назад
I think I should create full crud on datatable, so you will get a complete idea.
@AtanuMarick
@AtanuMarick Год назад
$(document).ready(function(){ $('#datatable').DataTable({ processing: true, serverSide: true, order: [[ 0, "desc" ]], ajax: "{{ url('quotes-data') }}", columns: [ { data: 'first_name' }, { data: 'last_name' }, { data: 'email' }, { data: 'phone' }, { data: 'company_name' }, { data: 'city' }, { data: 'no_of_parking_spots' }, { data:null, render:function(data,row,type){ return `Delete`; } } ] });
@mdraselmiah7429
@mdraselmiah7429 2 года назад
source code link don't work
@PHPTechLife
@PHPTechLife 2 года назад
what is the issue?
Далее
#kikakim
00:17
Просмотров 7 млн
Datatables in Laravel: Default and AJAX (Demo Project)
14:57
jQuery DataTables AJAX JSON example
12:59
Просмотров 83 тыс.
YajraBox Laravel Datatable | Introduction #1
8:31
Просмотров 57 тыс.
Easy to use DataTable with Laravel 10
12:52
Просмотров 7 тыс.
Laravel: Mass Update Batch Rows in One Query? 3 Ways
6:25
Solving one of PostgreSQL's biggest weaknesses.
17:12
Просмотров 205 тыс.
#kikakim
00:17
Просмотров 7 млн