<?php

namespace Lightscale\LaralightSvg\Http\Controllers;

use Lightscale\LaralightSvg\SvgService;

use Illuminate\Http\Controller;

class SvgController extends Controller
{

    public function serveSvg(SvgService $svg, string $collection)
    {
        \Log::debug($collection);
    }

}