belongsTo(Customer::class, 'customer_id')->select('id', 'name', 'code_customer', 'lot_no', 'nip', 'no_hp', 'tgl_lahir', 'jenis_kelamin', 'agama', 'address'); } public function warehouse() { return $this->belongsTo(m_warehouse::class, 'warehouse_id')->select('id', 'name', 'address'); } public function tipe_peti() { return $this->belongsTo(Type_peti::class, 'tipe_peti_id')->select('id', 'type', 'size_peti', 'description'); } }