tahiryasin / bagisto-countries

Country & States CRUD GUI for Bagisto SAAS Super admin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bagisto SAAS Countries/States CRUD GUI

Country & States CRUD GUI for Bagisto SAAS Super admin dashboard.

Automatic Installation

  1. Use command prompt to run this package composer require tahiryasin/bagisto-countries
  2. Now open config/app.php and register stripe provider.
'providers' => [
        // Countries provider
        Tahiryasin\Countries\Providers\CountriesServiceProvider::class,
]
  1. Now run php artisan config:cache

Manual Installation

  1. Download the zip folder from the github repository.
  2. Unzip the folder and go to your bagisto application path package and create a folder name Tahiryasin/Countries/ upload src folder inside this path.
  3. Now open config/app.php and register Countries provider.
'providers' => [
        // Countries provider
        Tahiryasin\Countries\Providers\CountriesServiceProvider::class,
]
  1. Now open composer.json and go to autoload psr-4.
"autoload": {
        "psr-4": {
        "Tahiryasin\\Countries\\": "packages/Tahiryasin/Countries/src"
        }
    }
  1. Now open the command prompt and run composer dump-autoload.
  2. Now run php artisan config:cache
  3. Now go to your bagisto super admin, you will find the Countries/States link under Settings menu.

Troubleshooting

  1. if anybody facing after placing a order you are not redirecting to payment gateway and getting a route error then simply go to bootstrap/cache and delete all the cache files.

For any help or customisation https://scriptbaker.com or email us scriptbaker@gmail.com

About

Country & States CRUD GUI for Bagisto SAAS Super admin


Languages

Language:PHP 58.5%Language:Blade 41.5%