Files
mmc_info/resources/views/components/svg.blade.php
Александр Бабкин 518b072533 show MMC alpha ready
2022-07-15 12:41:52 +03:00

9 lines
232 B
PHP

@php
$filePath = $project->mmc_path . '/' . $auk->auk_path . '/' . $auk->image_dir . '/' . $mmc->filename;
$svg = "";
if (strcasecmp(substr($mmc->filename, -3, 3), 'svg') == 0) {
$svg = readfile($filePath);
}
@endphp
{{ $svg }}