Laravel Livewire 3 new Navigate Feature | Tutorial

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024

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

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

    Wow i really love the persists in livewire!

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

    hello thanks your video helped me alots in my livewire journey!!!
    i have a question,,,
    does navigate method works only when you have same css and js in all the pages im having issues when navigating after few times i need to refresh my page since i have used different js on pages my side bar doesnt seem to be toggling and i need to refresh page every once after navigating few times??

  • @shubhamsahuSD
    @shubhamsahuSD 10 месяцев назад +1

    can we use this in normal blade file or the full page should be a livewire component itself to get it worked ?

    • @yelocode
      @yelocode  10 месяцев назад +1

      Thanks for watching, it will works both ways.

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

    Hi...how to navigate from class without full page reload? In case, when submitted data done, return redirect without full page reload. Can livewire 3 do this?

  • @skia515
    @skia515 Год назад +1

    great
    thanks bro

    • @yelocode
      @yelocode  Год назад

      Thank you for watching

  • @ibrownlad
    @ibrownlad Год назад +1

    Sir Indeed u really explained so well

    • @yelocode
      @yelocode  Год назад +1

      Thank you for watching. I'm currently in the process of recording a livewire 3 course. Will be uploading the videos from tomorrow. Will also cover the layout issue in the videos.

    • @ibrownlad
      @ibrownlad Год назад +1

      @@yelocode ​ @codingflick Jazaka Allah Sir and as a viewer I have a request or suggestion, ur videos are not in sequence, its in random factor kindly keep it in a sequence format, upload stuff one after another which all are linked together apart this u are going well Masha Allah May Allah Pak bless u with more and more success, much obliged

    • @yelocode
      @yelocode  Год назад +1

      Thank you brother, Will definitely be following more structure for livewire videos.
      The first episode is out : ruclips.net/video/VyIjDnYviD4/видео.html
      Will be uploading 1 video per day this week.
      Thank you for the support

    • @ibrownlad
      @ibrownlad Год назад +1

      @@yelocode Good luck brother, found ur first video so helpful

  • @joydeepbhowmik6181
    @joydeepbhowmik6181 Год назад +1

    We should be able to cache page....for those page which doesn't change often doesn't needs to be refreshed everytime... especially for blogs....

    • @yelocode
      @yelocode  Год назад

      Livewire does cache the page if you use the browser back and forward navigate buttons. But that I think is all it caches as far as I know.

  • @xp0nat
    @xp0nat Год назад

    Hello. The documentation really helped with many problems with some things, but for example I have a list of posts and when I go from page to page and try to edit a post, it doesn't work, neither do all the other features that are directly component of livewire. Maybe you have encountered this and know how it can be solved?

    • @yelocode
      @yelocode  Год назад

      Have you tried checking the javascript console to see if there are any errors? I had a similar issue and found there was 2 version of alpine js imported from the console logs

    • @xp0nat
      @xp0nat Год назад

      @@yelocode I was helped by updating the version, perhaps these are the effects of the beta version. Of course, I looked at the console, tried to follow the documentation for the upgrade, but after the update it worked.

    • @yelocode
      @yelocode  Год назад

      I see, glad the issue was fixed. Thank you for watching.

    • @xp0nat
      @xp0nat Год назад +1

      Thanks for your time.@@yelocode

  • @phanethpho4477
    @phanethpho4477 8 месяцев назад

    Please give me the solution when auth session expired navigation not redirected to login page

  • @albertabraham99
    @albertabraham99 Год назад +1

    is it possible to hide progress bar in wire navigate livewire?

    • @yelocode
      @yelocode  Год назад +1

      Yes it's possible, if you publish the livewire configs, you can disable it there
      "php artisan livewire:publish --config "

    • @albertabraham99
      @albertabraham99 Год назад

      @@yelocode but when i disable progress bar, it will be progress like page load

    • @patrickgomes2261
      @patrickgomes2261 Год назад

      @@albertabraham99 same problem here

  • @HamadAbdulla_7
    @HamadAbdulla_7 Год назад +1

    Great video,

  • @websers-4402
    @websers-4402 6 месяцев назад

    when i click back button at the top of the website shows some code why??

  • @SocietàACME
    @SocietàACME Год назад

    The html template id no more available: can you publish it elsewhere?

  • @roothakan4367
    @roothakan4367 Год назад +1

    Hocam bu işlem siteyi yavaşlatmaz mı?

    • @yelocode
      @yelocode  Год назад

      Should actually feel faster from users point of view.

  • @noizefriski89
    @noizefriski89 Год назад +1

    Navbar bug dropdown wire:navigate not work

    • @yelocode
      @yelocode  Год назад +2

      Since wire:navigate re-renders the html but does not run your javascript again. You will have to either warp your drop down with Yield or re initialise your drop down maybe by using
      document.addEventListener('livewire:navigated')
      I will try to make a video about this issue

    • @ilhamlutfi5815
      @ilhamlutfi5815 Год назад +1

      ​@@yelocodehello i have same issue, has the video been released?

    • @yelocode
      @yelocode  Год назад

      I have made a video covering this issue:
      ruclips.net/video/gkDq2E6g0F0/видео.html
      Hope it can help you fix the issue

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

    lo malo, que no carga el token

  • @mr.RAND5584
    @mr.RAND5584 Месяц назад

    No need run npm run dev.

  • @skia515
    @skia515 Год назад +1

    I have some links with wire:navigate after going to page when I click back, next time when I click on same link, whole page reloading. what is problem.
    {{ Str::ucfirst($brand[0]) }}

    • @yelocode
      @yelocode  Год назад

      It might be a bug in the beta version. Although try reinstalling livewire since there has been a new beta 0.8 release a few days ago, if you haven't already, It had some wire navigate bug fixes.