jhealey5
12/12/2018 - 1:10 PM

Statamic SVG helper

public function svg()
    {
      $name = $this->getParam('name');
      $path = '/site/themes/big/dist/images/' . $name . '.svg';

      if (FILE::exists($path)) {
        return File::get($path);
      }
    }