File: D:/HostingSpaces/brameda/brameda.nl/app/Komma/Shop/Catalog/Kms/CatalogIndexModel.php
<?php
namespace App\Komma\Shop\Catalog\Kms;
use App\Komma\Kms\Core\Attributes\Models\Traits\HasThumbnailInterface;
use App\Komma\Kms\Core\Attributes\Models\Traits\HasThumbnailTrait;
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\Komma\Shop\Catalog\Kms\CatalogIndexModel whereCatalogableId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel whereCatalogableType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel wherePrice($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Catalog\Kms\CatalogIndexModel query()
*/
class CatalogIndexModel extends Model implements HasThumbnailInterface
{
use HasThumbnailTrait;
protected $table = 'catalog_index';
protected $guarded = ['id'];
}