PHP code example of awema-pl / module-virtual-tour

1. Go to this page and download the library: Download awema-pl/module-virtual-tour 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/ */

    

awema-pl / module-virtual-tour example snippets


use AwemaPL\VirtualTour\Facades\VirtualTour;

VirtualTour::lowerStr('Some String'); // 'some string'

VirtualTour::count(); // 1
bash
php artisan vendor:publish --provider="AwemaPL\VirtualTour\Providers\VirtualTourServiceProvider" --tag="migrations"
bash
php artisan migrate
bash
php artisan vendor:publish --provider="AwemaPL\VirtualTour\Providers\VirtualTourServiceProvider" --tag="config"