PHP code example of johnnywoode / quickussd

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

    

johnnywoode / quickussd example snippets

 bash
$ composer provider
  "johnnywoode\quickussd\QuickUssdServiceProvider::class"

##migrate
$ php artisan migrate

##Add the following lines to your DatabaseSeeder class

Model::unguard();
$this->call(MenusTableSeeder::class);
$this->call(MenuItemsTableSeeder::class);

##Seed only if you need sample app
$ php artisan db:seed