diff options
Diffstat (limited to 'src/Http/Controllers/SvgController.php')
-rw-r--r-- | src/Http/Controllers/SvgController.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Http/Controllers/SvgController.php b/src/Http/Controllers/SvgController.php new file mode 100644 index 0000000..5296024 --- /dev/null +++ b/src/Http/Controllers/SvgController.php @@ -0,0 +1,17 @@ +<?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); + } + +} |