PHP code example of smunabo / exit-poppable

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

    

smunabo / exit-poppable example snippets

 Add the service provider to config/app.php (app/config/app.php in Laravel 4), within the providers array.

'providers' => array(
    // ...

    smunabo\exitPoppable\exitPoppableServiceProvider::class,
)


 Then add an alias to config/app.php (app/config/app.php), within the aliases array.

aliases' => [
    // ...

    "ExitPoppable" => smunabo\exitPoppable\Facades\ExitPoppable::class
]