Generate Unique Username on Registration - Part 3 | Laravel Social Media Website

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ธ.ค. 2024

ความคิดเห็น • 25

  • @AfricansOnline
    @AfricansOnline 11 หลายเดือนก่อน +4

    Brilliant! Absolutely Brilliant ... keep them coming

  • @williamribasczky9261
    @williamribasczky9261 5 หลายเดือนก่อน +1

    Thank you for this amazing content! One of the best tutorials ever!
    I want to give a bug fix suggestion:
    - Validating if the username is already in use.
    The fix is ​​simple, update the validation rule for username:
    'username' => ['required', 'string', 'max:255', 'regex:/^[\w\-\.]+$/i', Rule::unique(User::class)->ignore($this->user()->id)]
    This way, we can guarantee a unique username when updating the profile

    • @krillinsworld9439
      @krillinsworld9439 2 หลายเดือนก่อน

      I am going to include this myself because this will be required to be unique. Good call bro! Hope you find my regex expression useful as well.

  • @dilshodsafarov8080
    @dilshodsafarov8080 9 หลายเดือนก่อน +1

    Good job bro. Keep it up!

  • @thestorytimecrew
    @thestorytimecrew 10 หลายเดือนก่อน +1

    as usual u r the best dear keep it up ..... many people using u r tutorial ..get jobs ... this yor work is excellent dear

  • @ayanali3923
    @ayanali3923 11 หลายเดือนก่อน +1

    Thank you soo much this playlist will going to be greate for me and hopefully every subscriber and i am going to learn inertia and vue from here your teaching method is great

  • @djfreakpl
    @djfreakpl 10 หลายเดือนก่อน +1

    The reason why accepting only lowercase alphanumeric characters was not working, was the /i modifier in the regex definition, which made it case insensitive. Cheers!

    • @TheCodeholic
      @TheCodeholic  10 หลายเดือนก่อน

      Thanks for your comment. 👍

  • @mobinhussaini2564
    @mobinhussaini2564 11 หลายเดือนก่อน

    It was great, I am looking to for others!

  • @lenochw
    @lenochw 11 หลายเดือนก่อน

    Thank you for your great tutorials. I like especially Yii tutorials. Which framework is better in your opinion, Laravel or Yii? What about some comparison video? I know that laravel is very popular, but personally I like Yii more.

  • @monciego
    @monciego 9 หลายเดือนก่อน

    thanks

  • @MaroPincevic
    @MaroPincevic 4 หลายเดือนก่อน

    I get this error
    SQLSTATE[42S22]: Column not found: 1054 Unknown column 'username' in 'where clause'

  • @AfricansOnline
    @AfricansOnline 11 หลายเดือนก่อน

    Can Mailpit be used on Laravel 10 without sail?

    • @TheCodeholic
      @TheCodeholic  11 หลายเดือนก่อน

      Probably yes, but not sure I have not used without docker. This is why I recommend to follow this tutorial with laravel sail.

  • @LeonelLopezBorbon
    @LeonelLopezBorbon 11 หลายเดือนก่อน

    why not if put lowercase only for usarname 'username' => ['required', 'string', 'lowercase', 'max:255', 'regex:/^[\w\-\.]+$/i'],

  • @andresraso561
    @andresraso561 10 หลายเดือนก่อน

    finish.

  • @amigaworkbench720
    @amigaworkbench720 11 หลายเดือนก่อน

    You think we still need PHP frameworks?
    Because GPT can show you how to make secure PSR project in one day.

    • @TheCodeholic
      @TheCodeholic  11 หลายเดือนก่อน +2

      PHP framework is not only PSR project.
      There is way more than that so I think we still need PHP frameworks.

  • @mohamedel.shazly3411
    @mohamedel.shazly3411 9 หลายเดือนก่อน +2

    It was great, I am looking to for others!

    • @TheCodeholic
      @TheCodeholic  9 หลายเดือนก่อน

      There are already more than 30 videos posted in this playlist. I hope you will like thwm as well.

  • @abbeed1
    @abbeed1 7 หลายเดือนก่อน

    thanks