PHP code example of jmrashed / ecommerce

1. Go to this page and download the library: Download jmrashed/ecommerce 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/ */

    

jmrashed / ecommerce example snippets


return [
    'currency' => 'USD',
    'payment_gateways' => [
        'stripe' => [
            'api_key' => env('STRIPE_API_KEY'),
        ],
        'paypal' => [
            'client_id' => env('PAYPAL_CLIENT_ID'),
            'client_secret' => env('PAYPAL_CLIENT_SECRET'),
        ],
    ],
];

use Jmrashed\Ecommerce\Models\Product;

$product = new Product();
$product->name = 'Sample Product';
$product->price = 19.99;
$product->description = 'This is a sample product.';
$product->save();

use Jmrashed\Ecommerce\Facades\Cart;

Cart::add($productId, $quantity);

$items = Cart::content();

return redirect()->route('ecommerce.checkout');
bash
php artisan vendor:publish --provider="Jmrashed\Ecommerce\EcommerceServiceProvider"
bash
php artisan migrate