belongsTo(m_asset::class, 'asset_id'); } public function warehouse() { return $this->belongsTo(m_warehouse::class, 'exit_warehouse')->select('id', 'name', 'address'); } public function warehouseEnter() { return $this->belongsTo(m_warehouse::class, 'enter_warehouse')->select('id', 'name', 'address'); } public function peti() { return $this->belongsTo(Peti::class, 'peti_id')->select('id', 'tipe_peti_id', 'warna', 'fix_lot', 'packing_no', 'customer_id', 'jumlah', 'date_pembuatan', 'warehouse_id', 'status_disposal'); } public function tipe_peti() { return $this->belongsTo(Type_peti::class, 'type')->select('id', 'type', 'size_peti', 'description'); } public function customer() { return $this->belongsTo(Customer::class, 'customer_id'); } }