Laravel 9 Views, Layouts & Routes Tutorial | Laravel 9 Basic Routing | Laravel 9 For Beginners

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024
  • IN this video I am going to explain Laravel Views, Layouts & Routes.
    For Laravel Installation
    • How to install laravel...
    For Laravel Login Registration (Auth Scaffoldings)
    • Laravel 9 Login And Re...
    To read the full tutorial
    techtoolindia....
    For Complete Laravel Beginner Series Follow the playlist given below.
    • Laravel 9 Beginners Se...
    For any kind of queries or custom, development does comment on the video, and we will try to solve every problem of yours.
    Reach Out At
    Web: techtoolindia.com
    Email: techtoolindia@gmail.com
    Call: +91-8668370257
    Follow Us At
    / techtoolindia
    / techtoolindia
    / techtoolindia

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

  • @amithm4010
    @amithm4010 2 года назад

    Hi sir I got an error in laravel
    Value in the SESSION gets stored if I send it with POSTMAN and i can get the value in different function.
    But if I do same with AXIOS, value will get stored only till that called function ends .After if I want to access that value with different function it will return null.
    Earlier even with POSTMAN value was not getting stored.
    After adding Illuminate\Session\Middleware\StartSession::class it works fine with POSTMAN and not with AXIOS

    • @TechToolIndia
      @TechToolIndia  2 года назад +1

      Hi Amith,
      It's always recommended when you are making REST API not to use Session in that case unless you are authenticated.
      Better to keep each request separate.
      Always call the REST API with auth token and that will make available the user you are using token for.
      Hope this help.
      thanks

    • @amithm4010
      @amithm4010 2 года назад

      @@TechToolIndia Ok sir, I will try