37 lines
649 B
PHP
37 lines
649 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class StockOpname extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'product_id',
|
|
'dealer_id',
|
|
'system_quantity',
|
|
'physical_quantity',
|
|
'difference',
|
|
'opname_date',
|
|
'user_id',
|
|
];
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
|
|
public function dealer()
|
|
{
|
|
return $this->belongsTo(Dealer::class);
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|