9 lines
232 B
PHP
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 }}
|