File: D:/HostingSpaces/SBogers10/meulendijk.komma.pro/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
*
* @package App
* @mixin \Eloquent
* @property int $id
* @property string $catalogable_id
* @property string $catalogable_type
* @property string $title
* @property int $price
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereCatalogableId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereCatalogableType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel wherePrice($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\KommaApp\Shop\Catalog\Kms\CatalogIndexModel whereUpdatedAt($value)
*/
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'];
}