PHP code example of rothrauff-consulting / laravel-shopify

1. Go to this page and download the library: Download rothrauff-consulting/laravel-shopify library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rothrauff-consulting / laravel-shopify example snippets

 php
Use Shopify;

Shopify::get('products');
Shopify::get('products', ['fields' => 'id,title']);

Shopify::post('products', [
    'product' => [
        //new product
    ]
]);

Shopify::put('products/{id}', [
    'product' => [
        //update product
    ]
]);

Shopify::delete('products/{id}');
 php
Shopify::delete('themes/{theme_id}/assets', ['asset[key]' =>  'asset_key']);