Тёмный

Laravel 8 tutorial in Hindi - Session | with login example 

Code Step By Step
Подписаться 316 тыс.
Просмотров 46 тыс.
50% 1

In this laravel 8 Hindi video tutorial, we learn what is session and why we use it in a simple example. This video is made by anil Sidhu in the Hindi language
request method names
Laravel latest version playlist • Laravel 9 tutorial in ...
steps of video
Laravel Session
Make Login Form
Get data from Session
Delete data from Session
Laravel 9 tutorial in Hindi
Laravel 9

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

 

23 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@codestepbystep
@codestepbystep 2 года назад
Please support me by Subscribe, Like and Comment :) Thank you
@vinit-t6n
@vinit-t6n 9 месяцев назад
very nice explanation by repeating same thing again and again is good method to remember syntax and i liked so much thanks for your valuable contribution
@sangamsingh6866
@sangamsingh6866 3 года назад
We can add an extra logic that if the user types url/profile while he is logged out then it should redirect to login page, not the profile page.
@akSingh_120
@akSingh_120 Год назад
Nice taught Sir but one thing is missing when we logged out once, that should not go to profile page.
@garimakewat6987
@garimakewat6987 Год назад
❣❣
@shubhajeet10
@shubhajeet10 3 года назад
I have one doubt.. on which step we are checking the users Credentials?? Please Explain the Default Login, Register & Forgot Password Cycle and its Default Methods..
@SURAJKUMAR-kp8xj
@SURAJKUMAR-kp8xj 3 года назад
Very nice tutorial sir
@ajaychoudhary7735
@ajaychoudhary7735 3 года назад
Very nice explain
@kamalCode
@kamalCode 4 года назад
Nice, continue tutorials
@codestepbystep
@codestepbystep 4 года назад
Sure
@codingstudio6195
@codingstudio6195 2 года назад
Hii.. please make a video on laravel 8 sessions with database connection login page
@projectsolutioncenter
@projectsolutioncenter 3 года назад
plz give all question answer in next videoes
@arqamali1042
@arqamali1042 2 года назад
sir multiple authentication kelia ek video bna den please
@mr.skbarvey9731
@mr.skbarvey9731 Год назад
Sir meri ek laravel script install ho gayi hai but login id password dalne par 403 error aarha hai
@abhimanyuagarwal4982
@abhimanyuagarwal4982 6 месяцев назад
at 7:08 what would be the code if i also wanted to save the password
@ronitrathod4855
@ronitrathod4855 3 года назад
Last 5 Recently open screen ko store karvana ho to session ke use se kese hoga in laravel
@abshaikh5934
@abshaikh5934 3 года назад
bhai bina login ke profile ke page pai ja rahe hai, uska koi solution hai
@coolclips2992
@coolclips2992 3 года назад
Here you forgot one thing to show... user cant access profile page after logout
@mahekpatel8685
@mahekpatel8685 3 года назад
Try this: Route::get('profile', function () { if(session()->has('user')) { return view('profile'); } return view(login'); });
@Codingkite
@Codingkite 4 года назад
Bhai angular one video bana do plzz bahot den ho gya
@tr_boss_official
@tr_boss_official 3 года назад
Nice
@irfanabbasi9120
@irfanabbasi9120 2 года назад
Disply name after login need video sir
@ramanpahwa2845
@ramanpahwa2845 2 года назад
Hi, I am facing issues in storing sessions in laravel 5.8 . Can someone help?
@TheGlobalTech77
@TheGlobalTech77 3 года назад
sir ,how to store all form data in session and how to show in view
@darkSlayerx77
@darkSlayerx77 Год назад
Routes ke file me session handling ka logic, bhai thoda to MVC structure follow karo, controller me ye logic handle kar lete
@museedali1856
@museedali1856 3 года назад
All good but hum login page par hai to bina login details fill kiye hue profile page me ja rahe hain upper url bar me profile likhne par ye kese handle karen
@SkyLionQA
@SkyLionQA 3 года назад
Ye b wesy jesy login ko kiyaa na wesy hi os ko b get ("profile",function) Aisy
@mahekpatel8685
@mahekpatel8685 3 года назад
Route::get('profile', function () { if(session()->has('user')) { return view('profile'); } return view(login'); });
@moustaphamangane5390
@moustaphamangane5390 4 года назад
Thank you
@codestepbystep
@codestepbystep 4 года назад
You're welcome
@sherazkhan1939
@sherazkhan1939 3 года назад
sir, profile se login pe ja raha ha ??
@SkyLionQA
@SkyLionQA 3 года назад
12:19 line number 34 sir mujy ye error dy rha k login view ni ho rha InvalidArgumentException View [login] not found. login code :- Route::get('/login',function(){ if(session()->has('user')){ return redirect('profile'); } return view('login'); }); pehly tk sahi kam kr rha tha but jb hi is ko is terha sy kiyaa to ye error a rha
@codestepbystep
@codestepbystep 3 года назад
Apka login view nhi bna hua... iss error ke according
@SkyLionQA
@SkyLionQA 3 года назад
@@codestepbystep jesy ap ny pehly waly view("login","login"); ko khatm kr k new bnayaa wesy hi ma ny bnaya but error dy rha
@SkyLionQA
@SkyLionQA 3 года назад
ho gya ho gyaa thk Thanks
@NareshKumar-xf6rl
@NareshKumar-xf6rl 4 года назад
Why didn't you ask the interview question? Don't forget Anil Bhai
@mihirpatel6758
@mihirpatel6758 2 года назад
@naresh kumar : can you suggest best tutorial of laravel breeze login
@hassanjaved906
@hassanjaved906 3 года назад
when i press the logout it gives me the exception error 404 not found any sugesstion please
@thebackenddebuger5358
@thebackenddebuger5358 3 года назад
Check your file path
@GauravKumar-wo2ks
@GauravKumar-wo2ks 3 года назад
Route::get('/httpMethods_url', function () { if (session()->has('user_name')) { return redirect('profile'); } return redirect('httpMethods_url'); }); httpMethods_url - this is the path name where html login form is saved (httpMethods.blade.php) user_name - input name for username in html form profile - profile page Status Code - 302 Found When I try to access login page URL - localhost:8000/httpMethods_url then the same page loads again and again, and after some time, the browser shows This page isn’t working Sir, Please help.
@GauravKumar-wo2ks
@GauravKumar-wo2ks 3 года назад
I found the error. I use return redirect('httpMethods_url'); instead of return view('httpMethods'); Now, what is the difference between return redirect() and return view()
Далее
Laravel 8 tutorial in Hindi - Flash Session | Example
11:50
Laravel 8 tutorial - Localization | locale
13:10
Просмотров 56 тыс.
Eco-hero strikes again! ♻️ DIY king 💪🏻
00:48
КАК ВАМ ТАКОЙ ТЮНИНГ НИВЫ?
00:42
Просмотров 122 тыс.
Laravel 8 tutorial - Session | with login example
12:37
Laravel 8 tutorial in Hindi -  Post method API
9:58
Просмотров 21 тыс.
Laravel 8 tutorial in Hindi - One to One Relation
11:31
Laravel 8 tutorial in Hindi # Component
10:32
Просмотров 70 тыс.
Eco-hero strikes again! ♻️ DIY king 💪🏻
00:48