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/ASmits/kemi.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'];
}