Basic Form Validation In Laravel | Laravel For Beginners | Learn Laravel

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

КОМЕНТАРІ • 23

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

    LETS CONNECT THROUGH INSTAGRAM.
    instagram.com/codewithdary

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

    I have been learning laravel since last week...and here I am...got the best content on youtube. Thanku sir ....

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

      Wow, thank you so much. I got a lot more content on my channel if you are interested :)

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

      @@codewithdary yes I'm learning from your videos.

  • @dearbeargaming4106
    @dearbeargaming4106 3 роки тому +1

    Thanks for teaching me Laravel from scratch.

  • @manto7
    @manto7 3 роки тому +2

    Hello Dary. I really appreciate your content. I started your Laravel series yesterday night. But I'm on windows and I am facing difficulties installing Laravel properly. Can you please make a short video for the windows users to set up the environment properly? Waiting for your response bro

    • @niklaswennerstrand1010
      @niklaswennerstrand1010 3 роки тому +3

      Quick fix: Search youtube "Laravel Windows"

    • @codewithdary
      @codewithdary  3 роки тому +2

      I might do it in the future but I can write down the steps if you like to?

    • @codewithdary
      @codewithdary  3 роки тому +2

      + 1

    • @manto7
      @manto7 3 роки тому

      @@codewithdary yeah sure. Steps can be helpful too

    • @dumitruboaghi4404
      @dumitruboaghi4404 3 роки тому +1

      Actually, it's equal to what he use for mac, expect you not doing stuff which he does on mac. also i use git bash terminal for vscode. rest remains the same. Also, f.e. as web-server i use Open Server.

  • @bloxzyo
    @bloxzyo 3 роки тому

    Hello Dary,
    I really like your content and learning a lot from you.
    In this video you did 'name' => 'required|unique:cars'

  • @supbar2007
    @supbar2007 3 роки тому +1

    Thanks man.

  • @bieberbalazs6826
    @bieberbalazs6826 3 роки тому +1

    Thank you for your tutorial!
    What if i have multiple inputs with same name? How can i save that in the database in different row?
    Exemple:
    Thank you.

    • @codewithdary
      @codewithdary  3 роки тому

      Why would you want to have the same name? Lol.

    • @bieberbalazs6826
      @bieberbalazs6826 3 роки тому

      @@codewithdary It is very simple. At the same time i would like to add a lot of product to the database. So if i have iphone product wich is red, green and blue, i do not need to add 3 different times.
      So first i jusr have one line of inputs.
      and here i have a button wich add one more line.

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

    I have a question:
    'name(input name)' => 'required|unique:cars(table name)'
    How laravel will know that name_input should be check for uniqueness in only name_column of database?

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

      The key of your array is the column it searchers for. You can test this out by changing the key :)

  • @o.r.b.3190
    @o.r.b.3190 Рік тому +1

    mistake at 5:33. right is: 'name' => ['required', 'uniq...', ... ]