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.
40 lines
879 B
40 lines
879 B
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
use Illuminate\Database\Eloquent\SoftDeletes; |
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
|
|
class Peti extends Model |
|
{ |
|
use HasFactory, SoftDeletes; |
|
protected $table = 'petis'; |
|
|
|
protected $fillable = [ |
|
'tipe_peti_id', |
|
'warna', |
|
'customer_id', |
|
'warehouse_id', |
|
'jumlah', |
|
'date_pembuatan', |
|
'status_disposal', |
|
'packing_no', |
|
'fix_lot', |
|
'created_by', |
|
'updated_by', |
|
]; |
|
|
|
public function customer() |
|
{ |
|
return $this->belongsTo(Customer::class, 'customer_id'); |
|
} |
|
public function warehouse() |
|
{ |
|
return $this->belongsTo(m_warehouse::class, 'warehouse_id'); |
|
} |
|
public function tipe_peti() |
|
{ |
|
return $this->belongsTo(Type_peti::class, 'tipe_peti_id'); |
|
} |
|
}
|
|
|