Laravel 8 tutorial in Hindi # View

preview_player
Показать описание
in this laravel 8 Hindi video tutorial, we learn what is view and how to view it. this video is made by anil Sidhu in the Hindi language
we also learn new update which is coming with laravel 8th version
laravel full course with every topic
steps of this video
What is View
Make View
Call View
Pass Data in View
Interview Question for view
Рекомендации по теме
Комментарии
Автор

very good video, I like your tottorial we are all frinds learnings in your chennal code step by

muhammadzarif
Автор

sir. You are doing an excellent job, and love from Bangladesh.

rabbihossain
Автор

one of the best teacher thank you sir. Bahut he bahtreen tareqy sy paraty ho love you from pakistan <3

ahmad_khanofficial
Автор

Completed this part.Thank you sir for this amazing series.

sitararafaqat
Автор

function show($name) {
if(view()->exists('users')){
return view('users', ["name"=>$name]);
} else { echo "Not Found"; }
}

shubhamgaur
Автор

Sir make one video on prerequisites for laravel 8, what are the important part of php is required for laraval, when we start laravel after starting php & all

vrushabhkale
Автор

sir please make this series from scratch to Advance .As u mention before it will be 100 + video series.It also very helpful if u fulfill ur commitment.Thanx

surajpurakait
Автор

Jaisa ki apne btaya hai routes define krne ka 2 tarika hota hai... 1: Route::get('/about/{name}', function ($name) {
return view('about', ["name"=>$name]);
}); 2:Route::view('/about', 'about'); so mai yha parameter kaise pass kru...?

SandySrivastavaRDX
Автор

1. Html page ke liye need nhi padti kuki usme koi namespace ki jarurat nhi hoti.

2. if((view()->exists('users'))) {
return view('users');
} else {
echo "Not found";
}

neerajsharma
Автор

In My Short Knowledge.
1Yes we have check that user exist or not by using conditional statements.
2 I am create controller by using file name on controller, but it's not work than we have to create controller by using CMD. Controller is main component in laravel that's we we create Controller on CMD because it create all file which to be needed.
3 In view we create php file in visual studio because we have set the path on router not need to create file on CMD

hafeezmughal
Автор

sir make a new series on laravel depth concepts

microcodes
Автор

KINDLY MAKE ADVANCE SERIES OF LARAVEL AS U MENTIONED IN VIDEO ALSO THIS SERIES IS WORTHY SO THANK YOU FOR SUCH A GREAT SERIES

sakibarkate
Автор

Yes we can use this function to check as view exists or not
if ( view()->exists('users') ) {
return view('users');
} else {
echo " do not exists ";
}

tayyabnoor
Автор

KINDLY MAKE ADVANCE SERIES OF LARAVEL AS U MENTIONED IN VIDEO ALSO with professional heavy
web application thanks so much

talhabakhshattari
Автор

phele se kaise check kr sakte hai k view exists krta hai ya nahi? and view command line se kiyun nahi banaya ? Sir iske answer bata do.

ankitaoncoding
Автор

sir asa ku hank view se data bhejna ho to routing me bhi handle karna parta han???
request phle controller par jati then...then wha se agr hum view ko call kare ge to view call ho jae ga to phr route ku??

__Life
Автор

Sir agar aapke pass laravel 8 ke interview question with answer pdf file h to pls share with me.

mumbaibhaijaan
Автор

sir do you have any github repository for these tutorials? answer for the question is if (view()->exists('users'))

khalsdhusaen
Автор

to check whether view exist or not we have open if block and write

if(view()->exists->('user')){
return view('users', ["name"=>$name]);
}else {
return "View Not Found";
}

incode
Автор

Check Kr skte hain .blade file exit krti hain yaa nhi exits() method use

Ankush_k