HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/honger7.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'];
}