28 lines
488 B
PHP
28 lines
488 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Stock extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'stock';
|
|
protected $fillable = [
|
|
'product_id',
|
|
'dealer_id',
|
|
'quantity',
|
|
];
|
|
|
|
public function product()
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
|
|
public function dealer()
|
|
{
|
|
return $this->belongsTo(Dealer::class);
|
|
}
|
|
}
|