Learn how to Implement Real-Time Database Notifications In FilamentPHP | A Practical Guide

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

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

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

    I was looking for something like this. Thank you very much, Tapan! 😊

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

      I'm glad I finally figured this out and addressed your issue

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

    Good job! You are help me to configure broadcast, bcs i forgotten all 🤣

  • @ubica6
    @ubica6 4 месяца назад +1

    how get neon effect ?

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

    Thanks

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

    how to send notification with sound audio in filament ?

  • @TapanSharma.
    @TapanSharma.  8 месяцев назад +2

    If you want to learn more about FilamentPHP, you can check out my dedicated course where we'll build practical projects and learn a lot of stuff along the way.
    Link to the Course: www.udemy.com/course/laravel-filament-admin-panel-course/?couponCode=FILAMENTPHP&referralCode=C35137EA4BE5B1DE7485

    • @Claudio_Pereira
      @Claudio_Pereira 8 месяцев назад +1

      A great course, by the way! I already watched it 😃

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

      Thank you so much Claudio, positive reviews like these motivate me to provide more value

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

    what is your use theme?

  • @khant-nyar
    @khant-nyar 7 месяцев назад

    can send noti into mobile

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

    if i want to play sound to when db notif firering
    where i can set the file for playing sound
    Thx u bro Always have a good content

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

    can u send me u vscode config? i liked this UI

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

    hai bro
    i added render hook
    and this to to my view blade but is not fired up anything
    window.addEventListener('DOMContentLoaded', function () {
    window.Echo.private('App.Models.User.2')
    .listen('database-notifications.sent', (event) => {
    console.log('yojojojosss');
    const messageSound = new Audio('{{ asset('sounds.mp3') }}');
    messageSound.play();
    });
    });
    i just want to play notif sound while databasenotif event fired
    thx bro