<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StockProducts extends Model
{
public $timestamps = false;
protected $table = "tbl_stock_products";
protected $fillable = [
'id', 'StockId', 'ProductId', 'UserId', 'CustomerId', 'Quantity', 'Created_by', 'Created_at', 'Updated_by', 'Updated_at', 'IsDeleted', 'OwnerId', 'Status', 'CrmId'
];
}