<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class Products extends Model{
protected $table = "Products";
protected $primaryKey = "ProductID";
protected $fillable = ["Title","Description","Price"];
const CREATED_AT = "CreatedAt";
const UPDATED_AT = "UpdatedAt";
const DELETED_AT = "DeletedAt";
}
?>