🚐🚢Logistic tracking Project✈️Week1
Tôi làm cho anh “Tuần 1: Tracking core chạy thật” theo đúng kiểu copy → paste → chạy được ngay ⚙️🚀 👉 Scope tuần 1: DB: shipments + shipment_events + locations Migration Laravel Model + relationships API /api/tracking/{code} ⚙️ 1. MIGRATIONS (Laravel) 📍 locations Schema::create('locations', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('type')->nullable(); // port, city $table->string('country'); $table->string('code')->nullable(); // UN/LOCODE $table->decimal('latitude', 10, 7)->nullable(); $table->decimal('longitude', 10, 7)->nullable(); $table->timestamps(); }); 🚚 shipments Schema::create('shipments', function (Blueprint $table) { $table->id(); $table->string('tracking_code')->unique(); $table->enum('type', ['air', 'sea', 'land']); $table-...