<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
antwerpfactory / laravel-lightspeed-restaurant example snippets
use Lightspeedresto;
app()->lightspeedresto->core()->getCompanies(); // container
Lightspeedresto::core()->getCompanies(); // or use the facade
Lightspeedresto::core()->getCompany($companyId);
Lightspeedresto::onlineOrdering()->getCustomers();
Lightspeedresto::onlineOrdering()->updateOrderPartial($companyId, $orderId, $data);
Lightspeedresto::inventory()->addProduct($productGroupId, $data);