inetis-ch / oc-mall-plugin

E-commerce solution for October CMS

Home Page:https://mall.offline.swiss/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

oc-mall

E-commerce solution for October CMS

Build Status

This plugin is under heavy development. Don't use it in production yet. A first production ready version is
planned to be released towards the end of 2019.

Seed demo data

# All your existing data will be erased!
php artisan mall:seed-demo

Access pricing information

The price for a Product or Variant model is stored as an array of currency values.

The following accessors and methods are also available for alternative price columns such as old_price. Simply modify the property/method names accordingly.

Prices as float values

You can access the pricing information by accessing the price property directly:

print_r($product->price);

[
    "CHF" => 20.50,
    "EUR" => 21.50
]

Prices as formatted values

You can get all prices as a formatted string by accessing the price_formatted property:

print_r($product->price_formatted);

[
    "CHF" => 'CHF 20.50',
    "EUR" => '21.50 €'
]

Price in a specific currency

You can get the price in a specific currency by calling the priceInCurrency, priceInCurrencyFormatted or priceInCurrencyInteger methods.

echo $product->priceInCurrency();

> 20.50

echo $product->priceInCurrency('EUR');

> 21.50

echo $product->priceInCurrencyInteger();

> 2050

echo $product->priceInCurrencyFormatted();

> 'CHF 20.50'

echo $product->priceInCurrencyFormatted('EUR');

> '21.50 €'

Access product images

You can use the following methods to access product images:

// Get the first image of the main image set
$product->main_image;

// Get all images except the main image
$product->images;

// Get all available images, including the main image
$product->all_images;

About

E-commerce solution for October CMS

https://mall.offline.swiss/


Languages

Language:PHP 73.9%Language:HTML 24.9%Language:JavaScript 0.7%Language:CSS 0.5%Language:Shell 0.0%