belongsTo(m_asset::class, 'asset_id')->withTrashed(); } public function warehouseId() { return $this->belongsTo(m_warehouse::class, 'warehouse_id')->select('id', 'name', 'address')->withTrashed(); } public function warehouse() { return $this->belongsTo(m_warehouse::class, 'exit_warehouse')->select('id', 'name', 'address')->withTrashed(); } public function warehouseEnter() { return $this->belongsTo(m_warehouse::class, 'enter_warehouse')->select('id', 'name', 'address')->withTrashed(); } 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', 'kondisipeti_id' )->withTrashed(); } public function tipe_peti() { return $this->belongsTo(Type_peti::class, 'type')->select('id', 'type', 'size_peti', 'description')->withTrashed(); } public function customer() { return $this->belongsTo(Customer::class, 'customer_id')->withTrashed(); } public function kondisi_peti() { return $this->belongsTo(kondisi_peti::class, 'kondisi_peti_id')->withTrashed(); } }