Route Parameters With Patterns | Learn Laravel From Scratch | Laravel For Beginners

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

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

  • @codewithdary
    @codewithdary  2 года назад

    LETS CONNECT THROUGH INSTAGRAM.
    instagram.com/codewithdary

  • @tallitvak5325
    @tallitvak5325 3 года назад +4

    You're definitely a top notch teacher. I was always "afraid" of Laravel, because all the files and complexity, and it made me sick all the time. but now I have confidence in myself because of you! thank you very much my friend!

    • @codewithdary
      @codewithdary  3 года назад +1

      I feel you, I tried to avoid it too for a long time. You should never be afraid to learn something else now you pushed yourself over the edge to learn Laravel! Keep it up!

  • @TusharZambare
    @TusharZambare 3 года назад

    Awesome for beginners 👍

  • @rajabhishek2936
    @rajabhishek2936 4 года назад

    Nice video.can you add room booking system in this course?

  • @brokersadda-tv
    @brokersadda-tv 3 года назад

    Hi. Are you going to teach us a project in laravel 8 also ? May be an advanced CMS ?

    • @codewithdary
      @codewithdary  3 года назад +1

      Yeah got like 4-5 videos left and then I’ll do a couple projects!

    • @brokersadda-tv
      @brokersadda-tv 3 года назад

      @@codewithdary Great !!! Looking forward to them !

  • @arend-pietervanwestrhenen4080
    @arend-pietervanwestrhenen4080 3 года назад +1

    I realy like your course. I'm following it step by step. One question. My name has a "-" character in it. Now with this course part I can't add it. Than do I get a 404 page. How to add special characters to it? Thank you in advance.

    • @codewithdary
      @codewithdary  3 года назад

      What you're seeing there is the text being replaced with HTML entities this usually is the result of text coming directly from an HTML source (either a form with text that was previously converted to htmlentities or an other source).
      The ideal solution here is to ensure that the text is not received as HTML entity encoded, however if this is not an option (which it very often is not), you can use:
      $decoded = html_entity_decode($text);

    • @codewithdary
      @codewithdary  3 года назад

      Or you could try change your Database.php:
      'charset' => 'utf8',
      'collation' => 'utf8_unicode_ci',

    • @arend-pietervanwestrhenen4080
      @arend-pietervanwestrhenen4080 3 года назад

      @@codewithdary Thank you for your reply. I think I'll give it a try as soon as I'm at the database sessions.

  • @arend-pietervanwestrhenen4080
    @arend-pietervanwestrhenen4080 3 года назад

    And another question... Can jou also show the ID besides the name? and how do you do that?

    • @codewithdary
      @codewithdary  3 года назад

      In the same way but just passing in the id

    • @arend-pietervanwestrhenen4080
      @arend-pietervanwestrhenen4080 3 года назад

      @@codewithdary It did not work for me. But I've moved on to the next chapters. There is so much to learn yet. Thank you for this great training.

  • @josuebarros-desenvolvedorw2490
    @josuebarros-desenvolvedorw2490 4 года назад +1

    Hey bro, whats up?
    Do you have a Paid Laravel Course? If the free one is that cool... can't hardly imagine how good will the paid be!
    Please teach us how to create a Real Estate System, a LMS Platform and a Marketplace like MercadoLivre (Brazilian most famous marketplace)

    • @codewithdary
      @codewithdary  4 года назад +4

      I was making a paid course but I realized that my content should be free for now. I'll definitely do it in the future but I want to grow first :).
      Thanks for the suggestions, the real estate systems sounds fun to teach