File: D:/HostingSpaces/Lacom/lacom.nl/app/KommaApp/Shop/Catalog/Kms/CatalogIndexModel.php
<?php
namespace App\KommaApp\Shop\Catalog\Kms;
use Illuminate\Database\Eloquent\Model;
/**
* Represents a Catalog model that refers to Products, ProductGroups and Composites
*
* Class Product
* @property int id
* @property string title
* @property int price
* @property int catalogable_id
* @property string catalogable_type
* @package App
*/
class CatalogIndexModel extends Model
{
protected $table = 'catalog_index';
/*
* Transient properties on Eloquent models
* These are not saved to database.
*/
public $thumbnail = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['price', 'title'];
}