This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* When ACF Fields are loaded, if they are flexible content store the name of each layout as a value in the post meta. | |
* This will allow us to retrieve the original name later. | |
* | |
* @param [type] $field | |
* | |
* @return void | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Services; | |
use Carbon\Carbon; | |
use Illuminate\Support\Facades\Http; | |
/** | |
* ExchangeRates is a wrapper class for the Exchange Retes API at https://api.exchangerate.host | |
*/ | |
class ExchangeRates |