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/SBogers95/rentman.io/app/Komma/Shop/Products/ProductComposite/ProductComposite.php
<?php

namespace App\Komma\Shop\Products\ProductComposite;

use App\Komma\Documents\Kms\DocumentableInterface;
use App\Komma\Documents\Models\Document;
use App\Komma\Kms\Core\AbstractTranslatableModel;
use App\Komma\Kms\Core\Entities\DisplayNameInterface;
use App\Komma\Kms\Core\Entities\DisplayNameTrait;
use App\Komma\Shop\Categories\Kms\CategorizableInterface;
use App\Komma\Shop\Categories\Models\Category;
use App\Komma\Shop\Products\ProductableInterface;
use App\Komma\Shop\Products\ProductGroup\ProductGroup;
use App\Komma\Shop\Properties\Models\PropertizableInterface;
use App\Komma\Shop\Properties\Models\Property;
use App\Komma\Sites\Models\Site;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\MorphToMany;
use Laravel\Scout\Searchable;

/**
 * Represents a basic product that a user can put in a cart
 *
 * Class ProductComposite
 *
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Shop\Categories\Models\Category[] $categories
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Shop\Products\ProductGroup\ProductGroup[] $groups
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\ImageProcessing\Models\Image[] $images
 * @property-read \App\Komma\Shop\Products\ProductComposite\ProductCompositeTranslation $translation
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Shop\Products\ProductComposite\ProductCompositeTranslation[] $translations
 * @mixin \Eloquent
 * @property int $id
 * @property int $active
 * @property string $title
 * @property \Carbon\Carbon|null $created_at
 * @property \Carbon\Carbon|null $updated_at
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite whereActive($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite whereCreatedAt($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite whereId($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite whereTitle($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite whereUpdatedAt($value)
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Shop\Properties\Models\Property[] $properties
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Sites\Models\Site[] $sites
 * @property-read \Illuminate\Database\Eloquent\Collection|\App\Komma\Documents\Models\Document[] $documents
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite newModelQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite newQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Komma\Shop\Products\ProductComposite\ProductComposite query()
 */
class ProductComposite extends AbstractTranslatableModel implements ProductableInterface, CategorizableInterface, DocumentableInterface, PropertizableInterface, DisplayNameInterface
{
    use Searchable;
    use DisplayNameTrait;

    public function searchableAs()
    {
        return 'products_composite_index';
    }

    public function toSearchableArray()
    {
        return [
            'id' => $this->id,
            'name' => $this->name,
        ];
    }

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = ['name'];

    public function groups()
    {
        return $this->belongsToMany(ProductGroup::class);
    }

    /**
     * We belong to many categories
     *
     * @return MorphToMany
     */
    public function categories(): MorphToMany
    {
        return $this->morphToMany(Category::class, 'product_categorizable');
    }

    public function translations(): HasMany
    {
        return $this->hasMany(ProductCompositeTranslation::class);
    }

    /**
     * Get the documents from the current model
     *
     * @return MorphMany
     */
    public function documents():MorphMany
    {
        return $this->morphMany(Document::class, 'documentable');
    }

    /**
     * Returns properties
     * Example key: color
     * Example value of key color: green
     *
     * @return MorphToMany
     */
    public function properties(): MorphToMany
    {
        return $this->morphToMany(Property::class, 'propertizable');
    }

    /**
     * Get the site for this model
     *
     * @return BelongsToMany
     */
    public function sites(): BelongsToMany
    {
        return $this->belongsToMany(Site::class);
    }

    /**
     * Returns the lowest price possible for the composite.
     * Also known as "entry price"
     *
     * @return float
     */
    public function getPrice(): float
    {
        $price = 0;
        $groups = $this->groups()->get();
        $groups->each(function (ProductGroup $group) use (&$price) {
            $price += $group->getPrice();
        });

        return $price;
    }
}