PHP code example of alirezahamedashki / charter724-api-laravel

1. Go to this page and download the library: Download alirezahamedashki/charter724-api-laravel 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/ */

    

alirezahamedashki / charter724-api-laravel example snippets


return [

    /*
    |--------------------------------------------------------------------------
    | Api Access Token
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'access_token' => "PUT-YOUR-ACCESS-TOKEN-HERE",

    /*
    |--------------------------------------------------------------------------
    | Refresh Access Token
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'refresh_access_token' => false,

    /*
    |--------------------------------------------------------------------------
    | Api Base Uri
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'base_uri' => 'http://172.charter725.ir/‫‪APi/‫‪WebService/',

    /*
    |--------------------------------------------------------------------------
    | Api Authentication Uri
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'auth_uri' => "http://172.charter725.ir/‫‪APi/Login",

    /*
    |--------------------------------------------------------------------------
    | Table Names
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'table_names' => [
        'airports' => 'airports'
    ],

    /*
    |--------------------------------------------------------------------------
    | Column Names
    |--------------------------------------------------------------------------
    |
    | TODO:
    | Some Description About This
    */

    'column_names' => [

        /**
         * TODO:
         * Some Description About This
         */

        'code_int' => 'code_int',

        /**
         * TODO:
         * Some Description About This
         */

        'name_en' => 'name_en',

        /**
         * TODO:
         * Some Description About This
         */

        'name_fa' => 'name_fa',

        /**
         * TODO:
         * Some Description About This
         */

        'IATA_airport' => 'IATA_airport',

    ],

];

$airports = Charter724::getAirportsFromDB();

$airports = Charter724::getAirports();

$available15Days = Charter724::getAvailable15Days($fromIATA, $toIATA);

// example
$fromIATA = "THR";
$toIATA = "MHD";
$available15Days = Charter724::getAvailable15Days($fromIATA, $toIATA)

$availableFlights = Charter724::getAvailableFlights($fromIATA, $toIATA, $date);

// example
$fromIATA = "THR";
$toIATA = "MHD";
$date = "2019-05-17";
$availableFlights = Charter724::getAvailableFlights($fromIATA, $toIATA, $date);
bash
php artisan vendor:publish --provider="Adlino\Charter724\Charter724ServiceProvider" --tag=config
bash
php artisan charter724:token
bash
php artisan vendor:publish --provider="Adlino\Charter724\Charter724ServiceProvider" --tag=migrations
php artisan migrate
bash
php artisan charter724:airports