PHP code example of syscover / market

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

    

syscover / market example snippets


php artisan vendor:publish

php artisan optimize

php artisan migrate
php artisan db:seed --class="MarketTableSeeder"

php artisan migrate --path=database/migrations/updates

'pulsar.taxRule' => \Syscover\Market\Middleware\TaxRule::class,

Route::group(['middleware' => ['pulsar.taxRule']], function() {

    // write here your routes

});