Laravel Livewire Bootcamp - Twitter Clone with Volt

Поделиться
HTML-код
  • Опубликовано: 26 сен 2023
  • Jumpstart your Laravel journey with the Laravel Bootcamp, now with Livewire and Volt. This is a great way to jump into Laravel's best features and new technologies. Create a simple Twitter clone using Laravel Livewire components and learn about the new functional features provided by Laravel Volt.
    Latest Subscriber: SpiritWolve
    Subscriber Goal: ||||||||||||||| 69% ||||||......... 3.46K/5K
    Start creating Filament Admin Panels today with the Filament Bootcamp
    👉jorgearturorojas.gumroad.com/...
    Do you like my content? Buy me a coffee and help the channel grow ☕️ mercury.streamelements.com/ti...
    Latest tippers: MilenKo - $10.00, Sean - $5.00, Daniel GAMEL - $1.00, Mwest2020 - $5.00
    Join me on Discord
    / discord
    Discord Goal: ||||||||||||||| 74% ||||||||....... 222/300
    Latest discord member: ali1idman♯0

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

  • @agneldominique352
    @agneldominique352 10 месяцев назад +2

    Brilliant

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

    Wow❤

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

    🚀

  • @ivanphyo8879
    @ivanphyo8879 10 месяцев назад

    Thanks

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

    @tuto Hi. I could not miss to notice that your command line look different than mine and it resembles the warp consoele for MacOS but knowing you are on Windows system made me wonder are you using some other console app as my laravel new choices are presented with letters but not arrow navigation and I like your way better?

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

      Hmm, progressing few moments later I believe I can guess the used console - Linux console for Windows (Ubuntu) - am I correct, since you use zhrc which is the linux shell init?

    • @Tuto1902
      @Tuto1902  10 месяцев назад

      I'm using the windows terminal with WSL2 and Ubuntu. And I use ohmyz.sh/ for the terminal style. Plus, I use the Fira Code font face which comes with ligatures

  • @ifeanyinnaemego
    @ifeanyinnaemego 3 месяца назад +1

    The livewire generated the same folders like the blade right?
    The layout, profile etc. am seeing them in view and also inside view/livewire?

    • @Tuto1902
      @Tuto1902  3 месяца назад +2

      That's correct.

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

    Hello Tuto, could you please provide me with the name of the icon extensions you are currently using + your settings.json ?

    • @Tuto1902
      @Tuto1902  10 месяцев назад

      It's called Catpuccin Icons for VS Code. As for my settings.json, here's the gist of it gist.github.com/tuto1902/676aaa25274e3236ffa34a7fbbab8c74

    • @holakonoob
      @holakonoob 10 месяцев назад

      @@Tuto1902 thank you so mush

  • @TKleinschmidt
    @TKleinschmidt 9 месяцев назад +1

    How do you have code completion and intellisense working inside your list.blade.php (volt approach). i cant get it to work for me.
    Like when you hover over the on() method, it shows documentation for Livewire\Volt\on, i dont get that in blade files. That has to be a plugin i am missing. Cheers

    • @Tuto1902
      @Tuto1902  9 месяцев назад

      Honestly I set this up so long ago I kind of forget how I did it. But I don't remember installing anything other than Intelliphense

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

    MVC ?

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

      Sorry, I don't follow. Can you elaborate?

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

    How can I define a variable inside Livewire Volt Blade area like regular blade file
    Here is my full component.
    want to assign value to `$hello` variable.
    However, unable to assign variable
    ```php
    {{ $hello }}
    this is volt component {{ $count }}
    click
    ```

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

      just use state, the same way $count is defined. The second

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

      @@Tuto1902 thank you