TrackingOrder

1.0.0 • Public • Published 4 years ago

Tracking Order

A Clara module in Laravel

System requirements

  • PHP: >=5.6
  • Laravel Framework: >=5.4

Installation

  1. Enable Tracking Order Module
  2. Config clicker.php, sa.php in Modules/TrackingOrder/Config/
  3. Insert this code in head of layout master file:
    @view('end-head')
  4. Insert this code in checkout page:
    @view('build-source')
  5. Insert this js code when created order:
    $(document).trigger("created-order", [orderId]);
  6. Run sql statement with tracking_table in Modules/TrackingOrder/Config/sa.php:
    CREATE TABLE `tracking_table` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `order_id` int(11) unsigned DEFAULT NULL,
    `key` varchar(100) DEFAULT NULL,
    `value` text,
    PRIMARY KEY (`id`)
    );

Free

Install for free

php artisan module:install TrackingOrder

Version 1.0.0
Install count 1067
Requires php: >=5.6.4 laravel/framework: 5.4.*
Homepage
Last updated 5 months ago