PHP code example of itmm / m-mart-skin

1. Go to this page and download the library: Download itmm/m-mart-skin 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/ */

    

itmm / m-mart-skin example snippets


php artisan mskin:install

public function boot()
{
    ...
    $this->routes(function () {
        ...
        Route::middleware('web')
            ->namespace($this->namespace)
            ->group(base_path('routes/example.php'));
    })
}

php artisan vendor:publish --tag=mskin-config --force