Laravel InertiaJS & Vue 3 toast notifications

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 30

  • @peepwebdev575
    @peepwebdev575 Рік тому +2

    This is an awesome video. I originally was only going to watch a couple of minutes as i was trying to get a hacky workaround... to work! Then i realised the video solved my initial problem to begin with! 10/10, clear, prescise and thought out! thank you!

    • @cdruc
      @cdruc  Рік тому

      Glad it helped!

  • @nadjinmalade8738
    @nadjinmalade8738 Рік тому +2

    I have learned a lot of core concept from this 18min videos. Your the best.

  • @yasirarafat-dev
    @yasirarafat-dev 2 роки тому +3

    This one is easier and more effective than before one. Thanks. I love to watch your videos because I learn from your video.

  • @ryanolson4844
    @ryanolson4844 Рік тому +2

    This is the 3rd video of yours that I have watched to understand a concept more. It would be great to see this video expanded to work with Echo notifications as well

  • @dark-time-programer3306
    @dark-time-programer3306 Рік тому +1

    I learned 2 things in your video, 1 how to make toast notification work, and little bit english language

  • @asheaven1st
    @asheaven1st Рік тому +2

    Thank you for this tutorial.. You make me more familiar with Vue, Inertia, Laravel stack..

    • @cdruc
      @cdruc  Рік тому

      Glad it was helpful!😊

  • @europauniversalis5406
    @europauniversalis5406 Рік тому

    Well done! Learned a lot and implemented a variation of your solution into a website.

  • @nemac23
    @nemac23 Рік тому +1

    Great video. Super underrated channel

  • @chhirag
    @chhirag Рік тому

    Loved simple and clear explanation. Subscribed !!

  • @Chrizzlism
    @Chrizzlism Рік тому

    This was a great tutorial! Exactly what I needed, nothing less, nothing more.

  • @nicolasdutdut7618
    @nicolasdutdut7618 Рік тому +1

    Merci beaucoup pour ce tuto. Une aide énorme.

  • @trancecoremedia
    @trancecoremedia Рік тому

    Thank you for your excellent, no-nonsense tutorials, Constantin! Your channel has just became my primary Vue & Laravel learning resource🤩 On a side note, what's the name of the font you're using for the attribute names in PhpStorm (the one in yellow, cursive-like, that is)? Thanks a lot and keep up the great work! 👍👍👍

  • @umarjanoff_a
    @umarjanoff_a Рік тому +1

    Thank you for tutorial!

  • @christianpetelegaspi6196
    @christianpetelegaspi6196 Рік тому +1

    Please make a tutorial for dynamic dropdown select pleaseeee.

  • @kevinwakhisi7001
    @kevinwakhisi7001 2 роки тому +1

    Learned something new

  • @rafaelschnornberger5044
    @rafaelschnornberger5044 2 роки тому +1

    Great, I will watch, thank you.

  • @Raihan004
    @Raihan004 2 роки тому

    thank you for awesome lessons

  • @topalek
    @topalek Рік тому

    Awesome tutorial!!! thanx a lot. How can impement Composable toast.js with options api?

  • @arpdotcom
    @arpdotcom Рік тому +1

    really helpful, thank you

  • @AndrésValencia-w7s
    @AndrésValencia-w7s 11 місяців тому

    What is the font VsCode?

  • @vpuente
    @vpuente Рік тому

    Great content

  • @youssefelgharib7092
    @youssefelgharib7092 2 роки тому

    Very helpful ! Thank you very much

  • @devsbuddy
    @devsbuddy Рік тому +1

    Can we call it a "LIV (Laravel, Inertia, Vue)" Stack? What you say guys?

    • @nemac23
      @nemac23 Рік тому +1

      VILT, don't disrespect the tailwind like that

  • @jasonliu912
    @jasonliu912 Рік тому

    I use laravel Inertia Js Latest version ,
    Route::post('/test', function () {
    return redirect()->back()->with('toast', 'Test Toast');
    });
    return array_merge(parent::share($request), [
    'toast' => session('toast'),
    ]);
    why always show Toast is null

  • @krehman7020
    @krehman7020 Рік тому

    import {Inertia} from '@/inetiajs/inertia';
    this is not importing , i think it is changed to someting else

    • @umarjanoff_a
      @umarjanoff_a Рік тому +1

      Now you can use
      import { router } from "@inertiajs/vue3";
      router.on('finish', ( //code ) => {});