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.
59 lines
1.5 KiB
59 lines
1.5 KiB
<?php |
|
|
|
namespace App\Models; |
|
|
|
use App\Models\Peti; |
|
use App\Models\Customer; |
|
use App\Models\Type_peti; |
|
use Illuminate\Database\Eloquent\Model; |
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
|
|
class asset_status extends Model |
|
{ |
|
use HasFactory; |
|
protected $table = 'asset_statuses'; |
|
|
|
protected $fillable = [ |
|
'peti_id', |
|
'exit_at', |
|
'est_pengembalian', |
|
'exit_pic', |
|
'exit_warehouse', |
|
'enter_at', |
|
'enter_pic', |
|
'enter_warehouse', |
|
'kondisi_peti', |
|
'created_by', |
|
'updated_by', |
|
]; |
|
|
|
public function asset() |
|
{ |
|
return $this->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'); |
|
} |
|
}
|
|
|