Can we use Laravel as a Next.js alternative?

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

КОМЕНТАРІ • 67

  • @JuriBinturong
    @JuriBinturong 5 місяців тому +4

    Im came from the React/Next world and then moved to Vue/Laravel + WordPress. The ease of use is just much better with my current tech stack. I can still make mobile apps using Quasar + Ionic Capacitor, all while using Vue and Laravel.

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

    I'm so boring to write PHP code after using PHP and laravel for over 5 years. PHP and Laravel is super easy. I had the hard time to switch other languages for the better job opportunities because I was so addicted the comfortable zone of using PHP. Man, that was hard to leave PHP.

  • @Icodestuff
    @Icodestuff 11 місяців тому +34

    I watched the video in full and as an experienced laravel developer I am not sure that Laravel is a suitable solution for something as simple as a blog as this video somewhat shows how overwhelming it can be to build something as basic as a blog for beginners. Sure, someone experienced like me can easily watch this but I feel where Laravel truly shines is when you have a complex application where you need things like a mailing system, queuing system and cron jobs. I feel Laravel is a much better sell than NextJS when an application is forced to incorporate more complexity as the NextJS ecosystem is really fragmented.

    • @cryptoboy1461
      @cryptoboy1461 11 місяців тому +2

      Totally agree 👍

    • @baware80
      @baware80 11 місяців тому +3

      I agree, Laravel shines when it comes to build real life applications that need a robust mailing, queuing, cron job system and with the use of filament that brings it to the next level.

    • @aschmelyun
      @aschmelyun  11 місяців тому +6

      100% agree, and a blog probably wasn't the best demo for a direct comparison between the two. Agree though about the fragmentation, I feel like for beginners even Next.js is a harder ecosystem to fully grasp vs Laravel.

    • @Imam.Mehdi_
      @Imam.Mehdi_ 10 місяців тому +1

      ​@@aschmelyunplz make. A full professional course on php and backend

  • @stefanzweifel
    @stefanzweifel 11 місяців тому +4

    Great stuff! This is exactly how I built my personal website.
    Laravel + Orbit + Export package.
    Haven't migrated to Folio yet, but it looks super easy to set up.

    • @aschmelyun
      @aschmelyun  11 місяців тому +1

      It's definitely how I'm going to structure my personal site the next time I do a refactor. Everything just clicks together so well out of the box.
      Folio is a nice little QoL improvement and removes a ton of Route::view() calls, but not super necessary!

  • @Rasetz
    @Rasetz 11 місяців тому +4

    Laravel is so powerful, and gains power everyday ❤️

  • @lzl0_699
    @lzl0_699 11 місяців тому +7

    These are two very different technologies. With NextJS you are giving up a complex backend for the sake of UX, with Laravel it's the opposite effect. Astro/Nuxt for Next and perhaps Nest for Laravel would be a better comparison. Props to you for doing these great tutorials tho. 🎉

    • @aschmelyun
      @aschmelyun  11 місяців тому

      A Nest (or even Adonis) and Laravel comparison would be interesting. Thanks for the feedback and appreciate the props!

  • @amazekhashaa7309
    @amazekhashaa7309 11 місяців тому +6

    Nextjs became cult man, I've tried to build an web then I felt deepest pain. Its changing continuously, not giving a hell of a break. I am on the way of searching new proper tool.

  • @Stoney_Eagle
    @Stoney_Eagle 11 місяців тому +4

    This video is on par with a Jeffrey Way Laracasts course, see you there soon 😊

    • @aschmelyun
      @aschmelyun  11 місяців тому +2

      Already there ;) laracasts.com/series/modern-javascript-basics

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

    Does someone used Laravel + InertiaJS + React? I watched some tutorials and they are like NextJS and seems to work much better. InertiaJS used for routing with params and all the stuff that makes the header part server side rendered.
    I migrated my react application to NextJS but it works pretty slow in development mode.

    • @aschmelyun
      @aschmelyun  8 місяців тому +1

      I recently built an app with Laravel, Inertia.js, and React (pizza tracker), and I think it went pretty well!
      I'm not sure what you mean "slow in development mode", but with the stack above it uses Vite for compilation which is a super fast compiler and their hot reload is almost instant.
      The codebase I think is a bit more spread out than Next.js, but I think that the separations between Frontend and Backend code give a better development experience.
      Try it out with a small app and see what you think! You can use Laravel's Breeze starter kit which will give you a Laravel + Inertia + React app up in seconds, and you can see if it's fast enough for you.
      laravel.com/docs/10.x/starter-kits#laravel-breeze

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

    I much prefer using a proper frontend framework like Next or Nuxt which are specifically made for the frontend and let Laravel take care of the backend which it is specifically made for.

  • @shubhamsahuSD
    @shubhamsahuSD 10 місяців тому +1

    Livewire and Laravel anytime best choice 😊

  • @shubhamsahuSD
    @shubhamsahuSD 10 місяців тому

    Laravel and livewire protect me for writing complex js and handle everything individually, but laravel and livewire made it easy

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

    what code editor are you using?

  • @mouchy123
    @mouchy123 11 місяців тому +1

    Why would you want page based routing rather than explicit routing?

    • @teofannispapadopoulos4349
      @teofannispapadopoulos4349 11 місяців тому +1

      Exactly my thoughts. It feels like a limitation rather than a feature .

    • @mouchy123
      @mouchy123 11 місяців тому

      @@teofannispapadopoulos4349 cakephp and fuelphp used to have implicit routing and it was a nightmare to work with. And sticking database logic in blade files reminds me frameworkless PHP apps 15 years ago.

    • @aschmelyun
      @aschmelyun  11 місяців тому +5

      I feel like for things like marketing pages (about, team, contact, etc) if you have a SaaS app, it kind of makes sense. The alternative is a lot of Route::view() calls on your routes/web.php file, which cuts out some of the fluff.

  • @marcinmaj3609
    @marcinmaj3609 11 місяців тому +1

    I think that Laravel is a better solution, although it has ready-made tools such as Laravel Nova or Laravel Spark. Nextjs is faster etc but aren't the pros of Laravel better and stronger?

  • @andresgutgon
    @andresgutgon 11 місяців тому

    Hi, interesting video. One question. What happens with the volt component when the site is generated statically. How it works in production?

    • @holylandvideos9859
      @holylandvideos9859 10 місяців тому

      its probably translates into javascript in client side

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

      Volt is Livewire. They use http requests to swap html portions.

  • @HuyNguyen-ix4bl
    @HuyNguyen-ix4bl 11 місяців тому

    Is Nuxtjs consider fullstack farmework like Nextjs i see Nuxt have the same sever side for API too ?

    • @aschmelyun
      @aschmelyun  11 місяців тому

      Correct, Nuxtjs is a fullstack framework as well, but built on top of Vue.js like how Next is built on React. Both use Node under the hood though for stuff like SSR.

  • @kwasiezor1630
    @kwasiezor1630 6 місяців тому

    Nice video. It can very interesting if you can put all this together in a project. 😊

  • @pierbover
    @pierbover 10 місяців тому

    can't orbit give you the filename for the key?

    • @aschmelyun
      @aschmelyun  10 місяців тому +1

      That's what I thought, but for some reason it wasn't connecting the filename to the model ID...
      I'll have to revisit it more thoroughly again

  • @Daaboo
    @Daaboo 8 місяців тому +1

    Saw a different video from the channel codeForMe. He did a benchmark test Next vs Laravel and Laravel was much faster and better.

  • @HaifengZhu-pn3uq
    @HaifengZhu-pn3uq 10 місяців тому

    Which is more powerful, laravel or node.js?

    • @AmitErandole
      @AmitErandole 10 місяців тому +1

      Laravel is a framework written in PHP. Node js is a server runtime written in JavaScript. So you can't compare them that way unless you are comparing Laravel with express or redwoodjs etc

    • @HaifengZhu-pn3uq
      @HaifengZhu-pn3uq 10 місяців тому

      @@AmitErandole Thanks, which is more widely used in developing web app, PHP or Javascript

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

      JavaScript

    • @aristokles17
      @aristokles17 4 місяці тому

      @@AmitErandolenode.js is a runtime written in c++

    • @AmitErandole
      @AmitErandole 4 місяці тому

      @@aristokles17 yes. What is the relevance of internals in a question about use cases?

  • @shuvokhan3148
    @shuvokhan3148 11 місяців тому +4

    Laravel is better solution

  • @stefangadjev1310
    @stefangadjev1310 11 місяців тому +4

    The real question is can we use Next.js as an alternative to Laravel ;)

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

    Adonis is a nice node based contrast to Laravel. Next is like a new planet entirely, it lacks most things laravel has out of the box, and is janky to work with compared to Adonis.

  • @codedbyshoe
    @codedbyshoe 11 місяців тому

    I might be the only one but I hate this. Why not just use Nuxt or Next which already have massive ecosystems.. Did Laravel just give up on trying to compete in the backend space? It seems like everything they have done the past few years is just to compete with JavaScript frameworks. But, in hindsight I guess competing with JS is easier than competing with something like GO..

    • @aschmelyun
      @aschmelyun  11 місяців тому

      Laravel's been heavily aimed in the full-stack space for a while, but definitely over the last few years there's been more of a push to keep the frontend portion in the PHP space (with the transition from Vue to Livewire for instance).

    • @SXsoft99
      @SXsoft99 10 місяців тому

      Laravel didn't give up, it just has all the features used already as an industry standard and more like InertiaJS, over this you need to optimize and inprove your normal PHP skils and add the new features from the latest releases
      JS frameworks in the past years have just been doing catching up in terms of already preset packages

  • @winstonmhango3437
    @winstonmhango3437 10 місяців тому

    The problem is you need to be a php developer, then do laravel besides all these other things!...try to understand that Next.js is for developers with Javascript, React background. And it is simply a React framework, only that it now allows one to do both front-end and back-end without learning a back-end language, like php plus a framework like laravel!!

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

      yes and are they unable to learn new things? I started with PHP 7 years ago, by default you needed to also learn JS, HTML, CSS, MySQL, etc, now i am looking at GO and other languages
      the main difference is PHP, because of the frameworks and the community, comes with a lot of configs preset out of the box, meanwhile in JS you need to build a lot of things grown up

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

      @@SXsoft99that’s the problem Nextjs is trying to solve with the adoption of RSC

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

    Wtf do u know how easy Next set up is once u know React, and I thought that Lavarel doesn't use third parties libraries. I don't genuinely understand why anyone would substitute laravel instead of Next especially when u could just Express which shares the Node environment with Next. And I would rather learn the backend concepts instead of using a framework and its way easier to learn that in the Js ecosystem

  • @agelosnm
    @agelosnm 11 місяців тому

    No

    • @aschmelyun
      @aschmelyun  11 місяців тому +2

      Fair enough!

    • @agelosnm
      @agelosnm 11 місяців тому

      @@aschmelyunHahahahaha, I know!

  • @andrews4379
    @andrews4379 11 місяців тому

    Waste of time

    • @aschmelyun
      @aschmelyun  11 місяців тому +3

      True, I probably should be building the next AI app that's a wrapper for ChatGPT 🤷

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

      @@aschmelyun LOL. I'm sure someone would be willing to throw $$$ at you for it!

  • @cseale61
    @cseale61 11 місяців тому +3

    Speaking as a PHP Programmer with 23 years of experience, I can tell you that Laravel is nothing but a bloated sh!t show. I have done work for several Fortune 500 Companies, the last three being Delta, Comcast, and currently AT&T. Delta and Comcast strongly discourage using Laravel, and AT&T downright forbids it simply because plain PHP is much cleaner and resource friendly way to go. I've seen Vue and Laravel being promoted for use together. I've never understood this. I love working with Vue and the logical server-side language for it is Node. PHP without a frameworks like Laravel is a much cleaner way to go if PHP is what you wish to use. I just don't understand how something as bloated and complex as Laravel ever gained popularity to begin with. Learn to code properly and you won't have to depend on backend frameworks.

    • @Icodestuff
      @Icodestuff 11 місяців тому +7

      I can somewhat agree that Laravel has become bloated but you have to remember when you say "Learn to code properly" that developers are essentially going to be creating their own custom frameworks when using vanilla PHP. And if I am being honest, I feel it's much better to just use a standard framework like Laravel or Symfony instead of trying to learn someone's half baked custom framework.

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

      Please could you do a tutorial that shows people how to code 'properly' in a way that's scalable in PHP?

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

      Good luck maintaining a 'plain PHP' project with many developers working on it unless you adhere to strict patterns, like those Laravel provides out of the box. This doesn't even touch on features like migrations, middleware, queues, Eloquent, and many others. Without a robust framework, you'll likely find yourself constantly reinventing the wheel.

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

      The complete refusal to see & acknowledge the benefits of a framework such as laravel hints that you are either stubborn & narrow minded or that in your 23 years of experience, you had the privilege to avoid working on legacy php projects.
      Also there are “slimmer” versions of laravel if you are concerned about it being bloated Or you could always fork it,slim it down and fit to your needs (its open source ;)

    • @meetsomaiya5
      @meetsomaiya5 11 місяців тому

      Amen to that. Couldn't agree much!