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.

60 lines
1.3 KiB

1 year ago
<?php
namespace App\Models;
11 months ago
use App\Models\Peti;
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 = [
'peti_id', //sudah
'exit_at', //sudah
'est_pengembalian', //sudah
11 months ago
'exit_pic', // di controler
'exit_warehouse', //sudah
11 months ago
'enter_at', // //sudah
'enter_pic', // //sudah
'enter_warehouse', // //sudah
'kondisi_peti', // //sudah
'created_by',
'updated_by',
];
1 year ago
public function asset()
{
return $this->belongsTo(m_asset::class, 'asset_id');
}
public function warehouse()
{
return $this->belongsTo(m_warehouse::class, 'exit_warehouse');
}
public function warehouseEnter()
{
return $this->belongsTo(m_warehouse::class, 'enter_warehouse');
}
public function peti()
{
return $this->belongsTo(Peti::class, 'peti_id');
}
public function tipe_peti()
{
return $this->belongsTo(Type_peti::class, 'type');
}
public function customer()
{
return $this->belongsTo(Customer::class, 'customer_id');
}
1 year ago
}