<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Amit Gupta</title>
    <description>The latest articles on DEV Community by Amit Gupta (@stack_developers).</description>
    <link>https://dev.to/stack_developers</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2759280%2F5812425c-56b1-45fc-9869-fb23a6d51e31.jpeg</url>
      <title>DEV Community: Amit Gupta</title>
      <link>https://dev.to/stack_developers</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stack_developers"/>
    <language>en</language>
    <item>
      <title>🚀 Kickstarting the Multi-Vendor E-commerce Series in Laravel 12!</title>
      <dc:creator>Amit Gupta</dc:creator>
      <pubDate>Fri, 28 Feb 2025 16:08:25 +0000</pubDate>
      <link>https://dev.to/stack_developers/kickstarting-the-multi-vendor-e-commerce-series-in-laravel-12-530d</link>
      <guid>https://dev.to/stack_developers/kickstarting-the-multi-vendor-e-commerce-series-in-laravel-12-530d</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/MZadJkWK_54"&gt;
&lt;/iframe&gt;
&lt;br&gt;
Hey developers! 👋 I'm excited to announce the launch of my Multi-Vendor E-commerce Series in Laravel 12, where I’ll guide you step by step in building a feature-rich e-commerce platform from scratch.&lt;/p&gt;

&lt;p&gt;📢 Part 0 is now live! In this introductory video, I’ve explained everything about the series, including the project scope, features, and technologies we’ll use. If you're planning to build a scalable and modern multi-vendor e-commerce website, this series is for you!&lt;/p&gt;

&lt;p&gt;🔗 Watch Part 0 here: &lt;a href="https://www.youtube.com/watch?v=MZadJkWK_54" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=MZadJkWK_54&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📌 Bookmark &amp;amp; Follow the Playlist: &lt;a href="https://www.youtube.com/playlist?list=PLLUtELdNs2ZZ_hI7DvqrrhX-ASGD1U2Dl" rel="noopener noreferrer"&gt;https://www.youtube.com/playlist?list=PLLUtELdNs2ZZ_hI7DvqrrhX-ASGD1U2Dl&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💡 Stay tuned for upcoming episodes, where we’ll dive deep into Laravel 12 authentication, multi-vendor functionalities, admin panel setup, and much more!&lt;/p&gt;

&lt;p&gt;Let me know your thoughts in the comments. Are you excited for this series? 🔥💻&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>laravel</category>
      <category>php</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to Install Laravel 12 on Windows (Quick Guide)</title>
      <dc:creator>Amit Gupta</dc:creator>
      <pubDate>Tue, 25 Feb 2025 01:07:34 +0000</pubDate>
      <link>https://dev.to/stack_developers/how-to-install-laravel-12-on-windows-quick-guide-5d6i</link>
      <guid>https://dev.to/stack_developers/how-to-install-laravel-12-on-windows-quick-guide-5d6i</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/_htRdjlPnzk"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Laravel 12&lt;/strong&gt; is now officially released! Follow these simple steps to install Laravel 12 on Windows.&lt;/p&gt;

&lt;p&gt;1️⃣ &lt;strong&gt;Install XAMPP or WAMP&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Ensure PHP version 8.2 or higher.&lt;/p&gt;

&lt;p&gt;🔹 Download XAMPP: &lt;a href="https://www.apachefriends.org/download.html" rel="noopener noreferrer"&gt;https://www.apachefriends.org/download.html&lt;/a&gt;&lt;br&gt;
🔹 Download WAMP: &lt;a href="http://www.wampserver.com/en/" rel="noopener noreferrer"&gt;http://www.wampserver.com/en/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Start Apache and MySQL after installation.&lt;/p&gt;

&lt;p&gt;2️⃣ &lt;strong&gt;Install Composer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔹 Download Composer: &lt;a href="https://getcomposer.org/download/" rel="noopener noreferrer"&gt;https://getcomposer.org/download/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Install it and verify with:&lt;/p&gt;

&lt;p&gt;composer&lt;/p&gt;

&lt;p&gt;3️⃣ &lt;strong&gt;Install Laravel 12&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Via Composer Create-Project&lt;/p&gt;

&lt;p&gt;composer create-project --prefer-dist laravel/laravel my-laravel-app&lt;/p&gt;

&lt;p&gt;Via Laravel Installer&lt;/p&gt;

&lt;p&gt;composer global require laravel/installer&lt;br&gt;
laravel new my-laravel-app&lt;/p&gt;

&lt;p&gt;For Laravel 12 explicitly:&lt;/p&gt;

&lt;p&gt;composer create-project --prefer-dist laravel/laravel project_name "12.*"&lt;/p&gt;

&lt;p&gt;4️⃣ &lt;strong&gt;Run Laravel 12&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;cd my-laravel-app&lt;br&gt;
php artisan serve&lt;/p&gt;

&lt;p&gt;👉 Open &lt;a href="http://127.0.0.1:8000/" rel="noopener noreferrer"&gt;http://127.0.0.1:8000/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5️⃣ &lt;strong&gt;Check Laravel Version&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;php artisan --version&lt;/p&gt;

&lt;p&gt;✅ It should display Laravel Framework 12.0.0&lt;/p&gt;

&lt;p&gt;For common issues and troubleshooting, watch the full tutorial:📺 &lt;strong&gt;Complete Instructions:&lt;/strong&gt; &lt;a href="https://www.youtube.com/watch?v=_htRdjlPnzk" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=_htRdjlPnzk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🚀 Subscribe for more Laravel tutorials!&lt;br&gt;
&lt;a href="https://dev.tourl"&gt;Youtube.com/StackDevelopers&lt;/a&gt;&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Laravel 12 - New Features and Enhancements 🚀</title>
      <dc:creator>Amit Gupta</dc:creator>
      <pubDate>Tue, 11 Feb 2025 02:14:52 +0000</pubDate>
      <link>https://dev.to/stack_developers/laravel-12-new-features-and-enhancements-42oj</link>
      <guid>https://dev.to/stack_developers/laravel-12-new-features-and-enhancements-42oj</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fma44ex17r1phekt4tqxd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fma44ex17r1phekt4tqxd.png" alt="Laravel 12 - New Features and Enhancements 🚀" width="800" height="450"&gt;&lt;/a&gt;🚀 Laravel 12 is coming soon! The official release date is February 24, 2025, and it's packed with powerful new features and enhancements.&lt;/p&gt;

&lt;p&gt;Laravel 12 brings game-changing features like:&lt;br&gt;
✅ Enhanced Application Structure – More streamlined and intuitive.&lt;br&gt;
✅ Advanced Query Builder – New nestedWhere() for complex queries.&lt;br&gt;
✅ Security Enhancements – Stronger password validation with secureValidate().&lt;br&gt;
✅ Enhanced API Development – Native GraphQL and improved API versioning.&lt;br&gt;
✅ AI-powered Debugging – Real-time issue resolution with debug()-&amp;gt;suggest().&lt;br&gt;
✅ Performance &amp;amp; Scalability – Asynchronous caching and better PHP utilization.&lt;br&gt;
✅ Real-time Features – WebSocket support for live notifications &amp;amp; chats.&lt;br&gt;
✅ Developer-Friendly Tools – Smarter CLI and improved Artisan commands.&lt;/p&gt;

&lt;p&gt;📢 Watch the Full Breakdown Here: 👉 &lt;a href="https://www.youtube.com/watch?v=WfU2kG7v3SQ" rel="noopener noreferrer"&gt;Laravel 12 New Features Video&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔥 We will also integrate these features practically in our upcoming Laravel 12 Multi-Vendor E-commerce Series on Stack Developers. Subscribe now to stay ahead!&lt;/p&gt;

&lt;p&gt;🔔 Subscribe &amp;amp; Stay Updated: &lt;a href="https://www.youtube.com/stackdevelopers" rel="noopener noreferrer"&gt;Youtube.com/StackDevelopers&lt;/a&gt;&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>php</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>🚀 Everything You Need to Know About Laravel 12: Release Date, Features, and More</title>
      <dc:creator>Amit Gupta</dc:creator>
      <pubDate>Sat, 25 Jan 2025 03:14:13 +0000</pubDate>
      <link>https://dev.to/stack_developers/everything-you-need-to-know-about-laravel-12-release-date-features-and-more-43ad</link>
      <guid>https://dev.to/stack_developers/everything-you-need-to-know-about-laravel-12-release-date-features-and-more-43ad</guid>
      <description>&lt;p&gt;Laravel 12 is set to launch in Q1, 2025 (January–March 2025), and it promises to bring exciting new features and improvements for developers.&lt;/p&gt;

&lt;p&gt;🔧 Key Details:&lt;br&gt;
Release Timeline: Q1 2025&lt;br&gt;
Bug Fixes Support: Until Q3 2026&lt;br&gt;
Security Fixes Support: Until Q1 2027&lt;br&gt;
PHP Version Requirement: Minimum PHP 8.2 (same as Laravel 11)&lt;/p&gt;

&lt;p&gt;🎉 Expected Features in Laravel 12:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enhanced Application Structure&lt;/li&gt;
&lt;li&gt;Improved Performance and Scalability&lt;/li&gt;
&lt;li&gt;Advanced Query Builder Enhancements&lt;/li&gt;
&lt;li&gt;Real-time Features&lt;/li&gt;
&lt;li&gt;Security Enhancements&lt;/li&gt;
&lt;li&gt;Enhanced API Development&lt;/li&gt;
&lt;li&gt;Improved Testing and Debugging Tools&lt;/li&gt;
&lt;li&gt;Advanced Eloquent ORM Features
The complete feature list will be officially released soon. Stay tuned!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📌 Watch the Full Video Here:&lt;br&gt;
👉 &lt;a href="https://youtu.be/-ooFTx_-9GM" rel="noopener noreferrer"&gt;Everything You Need to Know About Laravel 12&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💬 Community Poll:&lt;br&gt;
Which website would you like us to create in Laravel 12?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Social Networking Website&lt;/li&gt;
&lt;li&gt;School Management Website&lt;/li&gt;
&lt;li&gt;Classified/Discussion Forum Website&lt;/li&gt;
&lt;li&gt;Multi-Vendor E-commerce Website
Vote now at: &lt;a href="https://www.youtube.com/stackdevelopers/community" rel="noopener noreferrer"&gt;Community Poll&lt;/a&gt;. The project with the most votes will be developed in Laravel 12!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📦 How to Install Laravel 12 Post-Launch:&lt;br&gt;
1️⃣ Install Laravel 12 via Composer:&lt;br&gt;
composer create-project --prefer-dist laravel/laravel project_name "12.*"&lt;/p&gt;

&lt;p&gt;2️⃣ Install Server Requirements:&lt;br&gt;
Install Apache Server like XAMPP/WAMP for PHP 8.2&lt;br&gt;
Install Composer&lt;/p&gt;

&lt;p&gt;👉 Subscribe for Updates:&lt;br&gt;
Don’t miss out on Laravel tutorials, updates, and projects! Subscribe now: &lt;a href="https://www.youtube.com/stackdevelopers" rel="noopener noreferrer"&gt;Stack Developers YouTube Channel&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let’s dive into &lt;strong&gt;Laravel 12&lt;/strong&gt; together!&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>php</category>
      <category>webdev</category>
      <category>coding</category>
    </item>
  </channel>
</rss>
