| Current Path : /home/users/unlimited/www/sigmaerp.codeskitter.site/app/Models/Items/ |
| Current File : /home/users/unlimited/www/sigmaerp.codeskitter.site/app/Models/Items/ItemSerialMaster.php |
<?php
namespace App\Models\Items;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
use App\Models\Items\Item;
class ItemSerialMaster extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'item_id',
'serial_code',
'current_status',
];
public function item():BelongsTo
{
return $this->belongsTo(Item::class);
}
}