Similar Posts

  • การขึ้น Laravel Project บน Server

    Laravel Project Deployment on Ubuntu Server Prerequisites 1. Update Server and Install Dependencies 2. Configure MySQL Database 3. Clone Project and Set Permissions 4. Composer Dependencies 5. Environment Configuration 6. Generate Application Key 7. Nginx Configuration Paste the following configuration: 8. Enable Nginx Site and Restart Services 9. Optional: SSL with Certbot Additional Deployment Tips

  • Generate a Model from an Existing Migration in Laravel

    To auto-create a model from a migration file in Laravel, follow these steps: 1. Generate a Model from an Existing Migration Run the following command: For example, if your table is inventories, run: 2. Generate a Model with a Migration and Factory (if needed) If you haven’t created a migration yet and want to generate…

  • การใช้งานฐานข้อมูลใน Laravel ผ่าน Query Builder

    Laravel มี Query Builder ที่ช่วยให้เขียน SQL ได้ง่ายขึ้นโดยไม่ต้องใช้คำสั่ง SQL ตรงๆ 📌 ก่อนใช้งานต้อง import 1️⃣ SELECT – ดึงข้อมูล 📌 ดึงข้อมูลทั้งหมด (SELECT * FROM users) 🔹 ได้ผลลัพธ์เป็น Collection ของออบเจ็กต์ 📌 ดึงข้อมูลแค่บางคอลัมน์ (SELECT name, email FROM users) 📌 ดึงข้อมูลแบบมีเงื่อนไข (WHERE id = 1) 🔹 first() ดึงแค่ 1 แถวแรก 📌 ดึงข้อมูลหลายเงื่อนไข (WHERE name = ‘John’ AND email = ‘john@example.com’) 📌…

  • Let Profit Run EA

    1. การป้องกัน Drawdown สูงสุด (Max Drawdown Protection) 2. การป้องกันขาดทุนจาก Equity (Max Equity Loss Protection) 3. การจัดการ Hedge อัจฉริยะ (Smarter Hedge Management) 4. การเปิด Grid Order 5. การแสดงผลและข้อมูล 6. ฟังก์ชันช่วยเหลือ สรุป

  • Controller ใน Laravel คืออะไร?

    📌 Controller เป็นส่วนหนึ่งของโครงสร้าง MVC (Model-View-Controller) ใน Laravel ทำหน้าที่รับคำขอจากผู้ใช้ (Request) และควบคุมการทำงานของระบบ โดยสามารถประมวลผลข้อมูลจาก Model และส่งผลลัพธ์ไปแสดงใน View 📌 MVC โครงสร้างใน Laravel 📌 การสร้าง Controller ใน Laravel เราสามารถสร้าง Controller ได้โดยใช้คำสั่ง Artisan คำสั่งนี้จะสร้างไฟล์ที่ app/Http/Controllers/ProductController.php 📌 ตัวอย่าง Controller (app/Http/Controllers/ProductController.php) 📌 การกำหนด Route ให้ Controller Laravel ใช้ Route เพื่อเชื่อมโยง URL กับ Controllerให้ไปที่ routes/web.php และเพิ่มโค้ดต่อไปนี้: 📌 Route::resource() จะสร้าง Route ทั้งหมดให้อัตโนมัติ ได้แก่ HTTP Method…

  • PHP Artsan CLI Command For Laravel

    🔹 Laravel 11 Extensions & Packages Laravel has many useful extensions (packages) to enhance its functionality. Here are some commonly used ones: 1️⃣ Authentication & Security 🔹 Laravel Sanctum (API Authentication) 📌 Used for: Token-based API authentication. 🔹 Laravel Breeze (Simple Authentication) 📌 Used for: Lightweight authentication (Login, Register, Forgot Password). 🔹 Laravel Jetstream (Advanced…

Leave a Reply

Your email address will not be published. Required fields are marked *