for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Nasyrov\Laravel\Imgix\ImgixServiceProvider;
if (!function_exists('imgix')) {
/**
* Generate an imgix url for the given path.
*
* @codeCoverageIgnore
* @param string $path
* @param array $params
* @return string
*/
function imgix($path, array $params = [])
{
return app(ImgixServiceProvider::ALIAS)->createURL($path, $params);
}