Multi User Login System using Laravel Jetstream | Laravel Hotel Management System Project Tutorial

Поделиться
HTML-код
  • Опубликовано: 9 янв 2024
  • Multi User Login System using Laravel Jetstream | Laravel Hotel Management System Project Tutorial
    Laravel Hotel Management System Project Playlist Link : • Laravel Hotel Manageme...
    Get the Hotel Project Source Code : www.buymeacoffee.com/yaminsha...
    Join this channel to get access to perks:
    / @webtechknowledge
    If you get helped from this tutorial, please subscribe my channel and stay with me to get more powerful tip 
    Thanks For Watching.
    I hope This video was helpful.If you have any questions then let me know in the comment section.
    Best of luck
    #webtechknowledge
    You can connect with me with the given links below:
    Please Subscribe to this channel: / @webtechknowledge
    Join this channel to get access to perks: / @webtechknowledge
    Follow me on :
    Facebook Link: / yaminshakil07
    Instagram Link: / yamin_shakil
    Twitter Link: / yaheashakil
    #laravelproject #laravelhotelmanagementsystem #hotelmanagementsystem #laravelprojectforbeginners

Комментарии • 41

  • @WebTechKnowledge
    @WebTechKnowledge  6 месяцев назад +2

    At 12:01 Instead of going to the route service provider go to config/fortify.php and make changes there
    -----------OR-------
    If you are having problem with redirecting to Dashboard then check this video for solution : ruclips.net/video/zodX7tBMeYk/видео.html

  • @nico3006
    @nico3006 Месяц назад

    simple and straight very helpful video my guy!

  • @maastechbd
    @maastechbd 6 месяцев назад

    Thanks for the important tutorials as you have published! Next tutorials please!

  • @mr.maazaslam2910
    @mr.maazaslam2910 4 месяца назад +10

    ERRORR Redirection to dashboard after login..
    FIX:-
    makes changes to this config.fortify,php
    From:
    'home' => '/dashboard',
    To:
    'home' => '/home',
    it will fix

  • @future_of_coding
    @future_of_coding 6 месяцев назад

    @webtechknowledge,Thanks for this tutorial, but I was expecting, advance one, like different table for admin, different routes, admin 2fa,admin profile update, like similar jetstream provide for user. Both can login from same browser, their session also different. If admin logout, user still logged in.

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад

      Noted . i will make one like you mentioned

  • @mdjisanahmed4310
    @mdjisanahmed4310 6 месяцев назад +2

    After login admin also redirects to the user dashboard. It should redirect to admin home page as you mentioned. What's the problem??

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад +2

      Go to config/fortify.php
      There mention your url

  • @DejigoldGraphix
    @DejigoldGraphix 3 месяца назад

    I'm getting error while installing npm run build, can i use npm run dev instead does it work the same with run build?

  • @mapu_animation
    @mapu_animation 2 месяца назад

    Route::('/home', [Admin Controller ::class, 'index']) ;
    Its showing syntax error, unexpected token "("
    Why?

  • @raibowmilk2404
    @raibowmilk2404 4 месяца назад

    anyone know why my laravel doesnt have authserviceprovider

  • @user-sq4rb7nf9f
    @user-sq4rb7nf9f 3 месяца назад

    20:19

  • @nuramieranatasya
    @nuramieranatasya 6 месяцев назад

    Is there any video to ensure user can only see his data in view page? It means, user cannot see data of other users. Because I face this issue in my coding. I use php language

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад

      Just give auth condition to solve your issue

    • @nuramieranatasya
      @nuramieranatasya 6 месяцев назад

      @@WebTechKnowledge Yes, I can solve it.. Thanks

  • @GalatiCristina
    @GalatiCristina Месяц назад

    in the recent update there is no RouteServiceProvider.php in the folder of providers what shuold i do ?

    • @WebTechKnowledge
      @WebTechKnowledge  Месяц назад

      Go to config/fortify.php .. there do the same thing that we did in the routeserviceprovider.. it will work

    • @GalatiCristina
      @GalatiCristina Месяц назад

      @@WebTechKnowledge thz

  • @antudutta5471
    @antudutta5471 6 месяцев назад

    it always goes to user dashboard
    if($usertype == 'user'){
    return view('test');
    }
    else if($usertype == 'admin'){
    return view('admin.index');
    }
    else{
    return redirect() -> back();
    }
    I even tried this by replacing dashboard with a test blade
    but it stll goes to user dashboard no matter what
    if anyone is able to fix this problem or know how to solve it, please let me know

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад +1

      Check this video to solve your issue : ruclips.net/video/zodX7tBMeYk/видео.html

    • @antudutta5471
      @antudutta5471 6 месяцев назад

      @@WebTechKnowledge thanks its solved

  • @utchihamadara1672
    @utchihamadara1672 6 месяцев назад +1

    it always redirected me to dashboard even if login in as admin or user
    plz give me a solution

    • @antudutta5471
      @antudutta5471 6 месяцев назад

      same problem

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад

      Go to config/fortify.php
      There mention your url

    • @WebTechKnowledge
      @WebTechKnowledge  6 месяцев назад

      check this video to solve your issue: ruclips.net/video/zodX7tBMeYk/видео.html

  • @ZoeEle-nl3di
    @ZoeEle-nl3di 3 месяца назад

    sir i dont have routeserviceprovider?

    • @lalrinfelazxs7626
      @lalrinfelazxs7626 3 месяца назад

      did u install jetstream

    • @mapu_animation
      @mapu_animation 2 месяца назад

      Same i also don't have routeservisprovider😢

    • @WebTechKnowledge
      @WebTechKnowledge  Месяц назад

      It's fine just make changes in the config/fortify.php instead of routeserviceprovider

  • @hardikkumarpatel3982
    @hardikkumarpatel3982 6 месяцев назад

    Every time redirect in dashboard after login no home url display...