Everything I Learned Trying Laravel / PHP

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

КОМЕНТАРІ • 38

  • @ilike1sand0s68
    @ilike1sand0s68 9 місяців тому +44

    My favorite thing to do is watch developers see just how much lifting Laravel does for you.

  • @mokhosh
    @mokhosh 9 місяців тому +27

    Laravel gets more awesome everyday. It has the best community, and third party packages with really high quality.

  • @jmon24ify
    @jmon24ify 9 місяців тому +25

    Laravel Breeze also gives you, out of the box, email verification, password confirmation, password reset, forgot password, and it is already sent up to send the user emails during the auth flow.

  • @geeksy2278
    @geeksy2278 9 місяців тому +10

    Using Laravel since my last job. Aside from how Laravel itself is, the community is even better. So many aweseom tools like filamentphp

  • @TheJimboCOD
    @TheJimboCOD 9 місяців тому +9

    Laravel was the first framework I ever learned at my first job. I will never use anything else

  • @anticipayo
    @anticipayo 9 місяців тому +4

    php is awesome in its own way. It still standing strong. Having said this, if I did php today, I’d making a third of what I make today with scala.

  • @SXsoft99
    @SXsoft99 3 місяці тому +1

    some would argue it comes with too many things out of the box, but as makes of laravel said "it ships with what you would find in 70-80% of websites"

  • @itcloudguy
    @itcloudguy 4 місяці тому +2

    3:42 - You must mention here, that Migrations are actually not to create tables only. The purpose of Migrations is to make changes in your database using artisan utility. And you have ability to rollback those changes.

  • @rahulspoudel
    @rahulspoudel 9 місяців тому +5

    Sad to see so much hate for PHP and Laravel. Yet, so called modern framework going back to their core practices and philosophy is hilarious.
    Great video btw CJ. Thanks for sharing.

  • @eptic-c
    @eptic-c 9 місяців тому +4

    Technically speaking, breeze did not create the User model or some other stuff you mentioned, it only creates the views, the controllers to handle the views and sets up the routes ( also everything comes with a valid feature test case ). The authentication middleware, model and everything else related to authentication is built in Laravel and you don't need any external package to use them.
    Also, your policy needs to be registered in laravel provided AuthServiceProvider (exists in all Laravel projects). The only thing magically loaded in laravel by default are the custom console commands from the app/Http/Console/Commands folder

  • @Voidstroyer
    @Voidstroyer 9 місяців тому +1

    Laravel is a great framework. Another good alternative is Phoenix for the Elixir programming language. Hoping you could do the same project using Phoenix as well. It also comes with a lot of tools for generating auth (including emails and stuff). Laravel definitely has more features out of the box compared to Phoenix, but Phoenix is pretty cool on its own.

  • @pedroluiz8019
    @pedroluiz8019 9 місяців тому +3

    Laravel is actually awesome

  • @tofuman9526
    @tofuman9526 5 місяців тому

    Oh. I’m trying to get an overview of Laravel .vs Rails. And this video reallyyyyyy highlights the greatness of Laravel for prototyping a quick MVP…

  • @ashraf3053
    @ashraf3053 12 днів тому

    I was blown away when I tried rails too 🤣, only thing close to this in js land is redwoodjs and adonisjs.

  • @TotallyNotZoid
    @TotallyNotZoid Місяць тому

    Can you make a video where you will create a docker development container stack and how to go to production with it? It would mean a lot, I love Laravel but I am struggling with using it with docker.

  • @Voltra_
    @Voltra_ 9 місяців тому

    Try laravel filament next, it'll blow your mind

  • @codedusting
    @codedusting 2 місяці тому

    How customisable is UI design if things are created by default?

    • @josephajibodu2377
      @josephajibodu2377 20 днів тому +1

      It's totally up to you, those are just like starter kits. Laravel comes with tailwindcss support out to the box, you are free to use any HTML, CSS, JS frontend tooling you like.

  • @stevepottz111
    @stevepottz111 9 місяців тому

    I wish there was a breeze template for modern angular. So I can convince people at work to use Laravel for our next project. For personal use I’m fine with using Vue or react

    • @QuintessentialDio
      @QuintessentialDio 9 місяців тому +2

      u can still write vue or react inside laravel

  • @darkbelg
    @darkbelg 7 місяців тому

    Now you can start using Laravel Blueprint with Laravel filament.

  • @faruzzy
    @faruzzy 9 місяців тому +2

    I think the equivalent of Laravel in the NodeJS is AdonisJS

  • @مؤمنسعاده-ح4ج
    @مؤمنسعاده-ح4ج 9 місяців тому +2

    Laravel will be the best ever

  • @ripplesr5655
    @ripplesr5655 5 місяців тому +1

    Welcome to the wonder world.

  • @rockNbrain
    @rockNbrain 9 місяців тому +3

    waiting for the Python Django episode =)

  • @knsense
    @knsense 9 місяців тому

    try rails now!

  • @victoriacassolo
    @victoriacassolo 9 місяців тому

    Nice video tks

  • @section31
    @section31 9 місяців тому

    Thoughts on spark

  • @kevinsedwards
    @kevinsedwards 5 місяців тому

    of course the guy with an eccentric mustache says pagination in an obviously ridiculous way.

  • @puchesjr07
    @puchesjr07 5 місяців тому

    Your comment regarding drizzle isn't entirely accurate, you can perform a similar ORM query with db.query.user.findMany or db.query.user.findFirst - you could abstract this with a class or function for example getUsersByOrg({orgId}) getUserById({id}) or User.getByOrg() for example. Additionally, you can do this with Prisma too.

  • @kirayamato6128
    @kirayamato6128 9 місяців тому

    blade sucks. for real

    • @louisevirtudazo2822
      @louisevirtudazo2822 9 місяців тому +3

      It is if you want to build a more interactive UI, but you can always use Laravel for Backend API only and use your preferred FE framework