'boolean', 'completed_at' => 'datetime', ]; // ─── Relationships ─────────────────────────────── public function shipment() { return $this->belongsTo(Shipment::class); } public function user() { return $this->belongsTo(User::class); } // ─── Helper Methods ────────────────────────────── public function complete(): void { $this->update([ 'is_completed' => true, 'completed_at' => now(), ]); } }