PHP code example of thinkingmik / api-proxy-laravel

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

    

thinkingmik / api-proxy-laravel example snippets


Route::match(array('GET', 'POST'), '/proxify', function()
{
	return Proxify::makeRequest(Request::method(), Input::all());
});

/**
 * Use this method in the laravel route file
 * @param $method 
 * @param array $inputs
 * @return Response
 * @throws ProxyMissingParamException
 */
Proxify::makeRequest(Request::method(), Input::all());

php artisan config:publish thinkingmik/api-proxy-laravel
app/config/packages/thinkingmik/api-proxy-laravel/proxy.php