Siopas Inventory PETI for ISTW Website
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.

75 lines
1.8 KiB

1 year ago
<?php
namespace App\Models;
11 months ago
use App\Models\Peti;
11 months ago
use App\Traits\UUID;
11 months ago
use App\Models\Customer;
use App\Models\Type_peti;
1 year ago
use Illuminate\Database\Eloquent\Model;
11 months ago
use Illuminate\Database\Eloquent\Factories\HasFactory;
1 year ago
class asset_status extends Model
{
use HasFactory;
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',
];
1 year ago
public function asset()
{
return $this->belongsTo(m_asset::class, 'asset_id');
}
public function warehouseId()
{
return $this->belongsTo(m_warehouse::class, 'warehouse_id')->select('id', 'name', 'address');
}
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', 'kondisipeti_id');
}
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');
}
public function kondisi_peti()
{
return $this->belongsTo(kondisi_peti::class, 'kondisi_peti_id');
}
1 year ago
}