PHP 전자 상거래 시스템 제품 관리 모듈 안내: 데이터베이스 테이블 생성, 모델 정의, 컨트롤러 생성, 뷰 설계, 제품 정보 추가 및 수정.
PHP 전자상거래 시스템 개발 가이드: 제품 관리
1. 데이터베이스 설계
제품 관리 모듈을 구축하기 전에 제품 정보를 저장하기 위한 데이터베이스 테이블을 생성해야 합니다. 테이블의 구조는 다음과 같습니다:
CREATE TABLE products ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, description TEXT, price DECIMAL(10,2) NOT NULL, quantity INT DEFAULT 0, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
2. 모델 정의
제품 테이블 데이터를 나타내는 Product
모델 생성: Product
模型来表示产品表数据:
class Product extends Model { protected $table = 'products'; protected $fillable = ['name', 'description', 'price', 'quantity']; }
3. 控制器
创建 ProductsController
用以处理产品相关的请求:
class ProductsController extends Controller { public function index() { $products = Product::all(); return view('products.index', compact('products')); } public function create() { return view('products.create'); } public function store(Request $request) { $product = new Product; $product->name = $request->input('name'); $product->description = $request->input('description'); $product->price = $request->input('price'); $product->quantity = $request->input('quantity'); $product->save(); return redirect()->route('products.index'); } // ... 其余方法 }
4. 视图
创建 index.blade.php
视图用于显示产品列表:
@extends('layouts.app') @section('content') <h1>Products</h1> <table border="1"> <tr> <th>ID</th> <th>Name</th> <th>Description</th> <th>Price</th> <th>Quantity</th> </tr> @foreach ($products as $product) <tr> <td>{{ $product->id }}</td> <td>{{ $product->name }}</td> <td>{{ $product->description }}</td> <td>{{ $product->price }}</td> <td>{{ $product->quantity }}</td> </tr> @endforeach </table> @endsection
实战案例
添加新产品
/products/create
创建一个新产品。修改现有产品
/products/{product_id}/edit
rrreeeindex.blade.php
만들기 보기는 제품 목록을 표시하는 데 사용됩니다: 🎜rrreee🎜 🎜실용 사례🎜🎜 🎜🎜새 제품 추가🎜🎜/products/create
를 방문하세요. 🎜🎜해당 필드를 입력하고 "만들기" 버튼을 클릭하세요. 🎜🎜새 제품이 데이터베이스에 추가되고 제품 목록에 표시됩니다. 🎜🎜🎜🎜기존 제품 수정🎜🎜/products/{product_id}/edit
을 방문하세요. 🎜🎜필요에 따라 필드를 업데이트하고 업데이트 버튼을 클릭하세요. 🎜🎜상품 데이터는 데이터베이스에 업데이트되어 상품 목록에 반영됩니다. 🎜🎜위 내용은 PHP 전자상거래 시스템 개발 가이드 제품 관리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!