1. Home
  2. Docs
  3. Split Order On Checkout for Bagisto
  4. Backend Settings of the Extension
Download PDF

Backend Settings of the Extension

  •  Download the zip folder.
  • Unzip the folder and go to your bagisto application path ‘packages’ and create a folder named ‘SunArc/SplitOrder/’ upload ‘src’ folder inside this path.
  • Now open ‘config/app.php’ and register the SplitOrder provider.

‘providers’ => [

        // Split Order provider

        SunArc\SplitOrder\Providers\SplitOrderServiceProvider::class,

]

 Now open composer.json and go to autoload psr-4.

“autoload”: {

      “psr-4”: {

    “SunArc\\SplitOrder\\”: “packages/SunArc/SplitOrder/src”

    }

    }

  •  Now open the command prompt and run composer dump-autoload
  •  Now run php artisan migrate
  •  Now run php artisan config:cache
  •  Now go to your bagisto admin section ‘admin/configuration/split/order’ you will see the new Configuration setting.
  •  To show order Ids on success order page you need to replace code in success.blade.php file in your selected theme folder.For example for default theme – file path resources/themes/default/views/checkout/success.blade.php
Download Guide
Was this article helpful to you? Yes No

How can we help?