XSL файл не входит - PullRequest
0 голосов
/ 10 мая 2019

Я реализую карту сайта в laravel 5.7, но есть один файл, который я хочу включить в блейд-файл, но XSL-файл не включает

Файл, который я хочу включить: xsl / gss.xsl

Ниже моего файла sitemap.blade.php

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="{{ URL::asset('xsl/gss.xsl')}}"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"  
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">

    @foreach($urls as $url)
        <sitemap>
            <loc>
                {{$url['loc']}}
            </loc>
            @if(isset($url['lastmod']))
                <lastmod>{{$url['lastmod']}}</lastmod>
            @endif
        </sitemap>
    <br>
    @endforeach
</sitemapindex>

Так что у кого-нибудь есть идея относительно карты сайта в laravel 5.7 ??

...