Laravel Debugbar: 4 Features You May Not Know

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

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

  • @Sdirimohamedsalah
    @Sdirimohamedsalah 18 дней назад +2

    The request history function is fantastic!
    I appreciate you thinking about the “hidden features” and taking the time to create this video!
    Great!

  • @WebGalaxyAI
    @WebGalaxyAI 11 дней назад

    Happy New Year🎄

  • @ramina2121
    @ramina2121 18 дней назад +5

    Good features. I did not know about them.

  • @ajithlal1688
    @ajithlal1688 18 дней назад +3

    Merry Christmas ⛄🎁

  • @nero3700
    @nero3700 12 дней назад +2

    Didn't know about the timeline one.
    That last one can also be done with just debug($order).

  • @WomboCombo950
    @WomboCombo950 14 дней назад +1

    Awesome, thnx a lot .

  • @PabloZagni
    @PabloZagni 18 дней назад +1

    Great features!

  • @PedroCoelho98
    @PedroCoelho98 18 дней назад +1

    I use debugbar but also xdebug to step through the code sometimes and catch errors in logic or operations in variables. Do you find it useful?

  • @haooooo
    @haooooo 17 дней назад +1

    api, how to use it ? thanks!

    • @LaravelDaily
      @LaravelDaily  16 дней назад +3

      For API projects, use Laravel Telescope

  • @yogaydv4230
    @yogaydv4230 9 дней назад

    Can you make a video on elastic search

    • @LaravelDaily
      @LaravelDaily  8 дней назад

      I'm not using Elasticsearch myself, so I'm not qualified to make a proper video about it.

  • @daviddaoud4817
    @daviddaoud4817 10 дней назад

    Would you like to show us some security tutorial how can we stop ssrf, xss attack

    • @LaravelDaily
      @LaravelDaily  9 дней назад

      I have this video about security in Laravel: ruclips.net/video/dWVTfY6cMBs/видео.html

    • @daviddaoud4817
      @daviddaoud4817 9 дней назад

      @LaravelDaily thank you for answering i have seen this one but i want to ask specially for ssrf attack

  • @shojibflamon
    @shojibflamon 18 дней назад +1

    Impressive

  • @MewtwoStar
    @MewtwoStar 18 дней назад

    hello sir,
    please make video on fast blade template loading.
    i made a form page using blade templates for input select and others, with around 60 fields, it took around 14sec to load, how can we make this faster.
    humble request sir.

    • @SilverPaladin
      @SilverPaladin 18 дней назад +2

      use debug bar to see how many queries are executed for your form. Sounds like you have a mess going in your database structure and query methods. There is lots of help for N+1 queries, even on this channel.

    • @MewtwoStar
      @MewtwoStar 18 дней назад +1

      @SilverPaladin thanks 👍.
      Anyhow Resolved the issue, actually it was cache issue i think, I tried all the options i got online, some how it got resolved 😔.