deniztezcan/laravel-google-shopping

Laravel Google Shopping package

0.2.1 2021-10-28 12:34 UTC

This package is auto-updated.

Last update: 2024-04-28 18:59:14 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

composer require deniztezcan/laravel-google-shopping

Example

use DenizTezcan\LaravelGoogleShopping\LaravelGoogleShopping;

LaravelGoogleShopping::setTitle('Example feed');
LaravelGoogleShopping::setDescription('Example feed of the Example shop');
LaravelGoogleShopping::setLink('https://example.shop');

LaravelGoogleShopping::addItem(
	"https://example.shop/p/foo-bar",
	"SKU123",
	"Foo bar",
	"https://example.shop/images/foo-bar.png",
	"Foo bar best product",
	'new',
	99.99,
	'Foo brand',
	'6387712293758',
	[
		'country' => 'NL',
		'service' => 'PostNL - Gratis',
		'price'	  => 0
	]
);

return LaravelGoogleShopping::display();