You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.1 KiB
86 lines
2.1 KiB
<?php |
|
|
|
namespace App\Models; |
|
|
|
use App\Models\Peti; |
|
use App\Traits\UUID; |
|
use App\Models\Customer; |
|
use App\Models\Type_peti; |
|
use Illuminate\Database\Eloquent\Model; |
|
use Illuminate\Database\Eloquent\SoftDeletes; |
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
|
|
class asset_status extends Model |
|
{ |
|
use HasFactory, SoftDeletes; |
|
protected $table = 'asset_statuses'; |
|
|
|
protected $fillable = [ |
|
'mobile_id', |
|
'peti_id', |
|
'exit_at', |
|
'est_pengembalian', |
|
'exit_pic', |
|
'customer_id', |
|
'warehouse_id', |
|
'exit_warehouse', |
|
'enter_at', |
|
'enter_pic', |
|
'enter_warehouse', |
|
'kondisi_peti_id', |
|
'status', |
|
'created_by', |
|
'updated_by', |
|
]; |
|
|
|
// public function asset() |
|
// { |
|
// return $this->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(); |
|
} |
|
}
|
|
|