3v4l.org - онлайн пхп редактор (удобно замерять скорость и объем памяти)
https://3v4l.org/
LaraCart::add(
$itemID,
$name = null,
$qty = 1,
$price = '0.00',
$options = [],
$taxable = true,
$lineItem = false
)
// Adding an item to the cart
LaraCart::add(2, 'Shirt', 200, 15.99, [
'size' => 'XL'
]);
// If you need line items rather than just updating the qty you can do
LaraCart::addLine(2, 'Shirt', 200, 15.99, [
'size' => 'XL'
]);
// Also you can have your item not taxed
$item = LaraCart::addLine(2, 'Shirt', 200, 15.99, [
'size' => 'XL'
],
$taxable = false
);
Slack::to('#accounting')->send('Are we rich yet?');
chat_id = A_USER_CHAT_ID;
$sendMessage->text = 'Hello world!';
$tgLog->performApiRequest($sendMessage);
$loop->run();