<?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: Ramajayam K</title>
    <description>The latest articles on DEV Community by Ramajayam K (@ramajayamk11).</description>
    <link>https://dev.to/ramajayamk11</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%2F3051584%2F90f26a70-bc9a-4c82-8e12-0b9be10be217.jpg</url>
      <title>DEV Community: Ramajayam K</title>
      <link>https://dev.to/ramajayamk11</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ramajayamk11"/>
    <language>en</language>
    <item>
      <title>🔐 Setting Up Login &amp; Register in Laravel with Breeze</title>
      <dc:creator>Ramajayam K</dc:creator>
      <pubDate>Tue, 29 Apr 2025 03:21:01 +0000</pubDate>
      <link>https://dev.to/ramajayamk11/setting-up-login-register-in-laravel-with-breeze-4kln</link>
      <guid>https://dev.to/ramajayamk11/setting-up-login-register-in-laravel-with-breeze-4kln</guid>
      <description>&lt;p&gt;Laravel Breeze is the perfect lightweight starter kit for authentication. Here's how you can get up and running with login and register functionality in minutes!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅ Step-by-Step Guide:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1️⃣ Install Laravel Breeze&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;bash:&lt;/strong&gt;&lt;br&gt;
composer require laravel/breeze --dev&lt;br&gt;
php artisan breeze:install&lt;/p&gt;

&lt;p&gt;💡 You’ll be prompted to choose a frontend framework — options include:&lt;br&gt;
 Blade (default), React, Vue, Alpine + TailwindCSS, etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2️⃣ Update Your Homepage Route (Optional)&lt;/strong&gt;&lt;br&gt;
Edit routes/web.php to redirect the home (/) to the login page:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;php:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Route::get('/', function () {&lt;br&gt;
    return view('auth.login');&lt;br&gt;
});&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3️⃣ Run Your Laravel Development Server&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;bash:&lt;/strong&gt;&lt;br&gt;
php artisan serve&lt;/p&gt;

&lt;p&gt;Then visit: &lt;a href="http://localhost:8000" rel="noopener noreferrer"&gt;http://localhost:8000&lt;/a&gt; 🚀&lt;br&gt;
You'll land directly on the Login screen!&lt;/p&gt;

</description>
      <category>laravel</category>
    </item>
    <item>
      <title>🚀 How to Create a New Laravel Project Quickly!</title>
      <dc:creator>Ramajayam K</dc:creator>
      <pubDate>Tue, 29 Apr 2025 03:02:07 +0000</pubDate>
      <link>https://dev.to/ramajayamk11/how-to-create-a-new-laravel-project-quickly-1n29</link>
      <guid>https://dev.to/ramajayamk11/how-to-create-a-new-laravel-project-quickly-1n29</guid>
      <description>&lt;p&gt;&lt;strong&gt;🚀 How to Create a New Laravel Project Quickly!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔹 Method 1: Using Composer Create-Project&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Command:&lt;/strong&gt;&lt;br&gt;
composer create-project --prefer-dist laravel/laravel LoginAuth "11.*"&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Time Taken:&lt;/strong&gt; ⏱️ Approximately 2–5 minutes&lt;br&gt;
✅ Directly installs the specific Laravel version you mention.&lt;br&gt;
✅ Good for complete control over the setup.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔹 Method 2: Using Laravel Installer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commands:&lt;/strong&gt;&lt;br&gt;
composer global require laravel/installer&lt;br&gt;
laravel new LoginAuth&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Time Taken:&lt;/strong&gt; ⏱️ Approximately 30–60 seconds&lt;br&gt;
✅ Faster installation compared to create-project.&lt;br&gt;
✅ Best if you frequently create new Laravel projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔹 Method 3: Using Docker (Laravel Sail)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Command:&lt;/strong&gt;&lt;br&gt;
curl -s "&lt;a href="https://laravel.build/LoginAuth" rel="noopener noreferrer"&gt;https://laravel.build/LoginAuth&lt;/a&gt;" | bash&lt;br&gt;
cd LoginAuth&lt;br&gt;
./vendor/bin/sail up&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Time Taken:&lt;/strong&gt; ⏱️ Around 1 minute&lt;br&gt;
✅ Ideal for containerized development.&lt;br&gt;
✅ Comes pre-configured with PHP, MySQL, Redis, and more.&lt;/p&gt;

</description>
      <category>laravel</category>
    </item>
  </channel>
</rss>
