Laravel代码不适用于网页。我该如何解决?

时间:2019-09-23 07:23:13

标签: laravel

我是第一次使用Laravel框架。编写代码并在网页上查看,它没有应用即可显示代码。 例如,

@if (Route::has('login'))
@auth HOME 
@else LOGIN 
@if (Route::has('register')) REGISTER 
@endif 
@endauth
@endif

我该如何解决?

    <!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Laravel</title>

    </head>
    <body>
        <div class="flex-center position-ref full-height">
            @if (Route::has('login'))
                <div class="top-right links">
                    @auth
                        <a href="{{ url('/home') }}">Home</a>
                    @else
                        <a href="{{ route('login') }}">Login</a>

                        @if (Route::has('register'))
                            <a href="{{ route('register') }}">Register</a>
                        @endif
                    @endauth
                </div>
            @endif

            <div class="content">
                <div class="title m-b-md">
                    Laravel
                </div>

                <div class="links">
                    <a href="https://laravel.com/docs">Docs</a>
                    <a href="https://laracasts.com">Laracasts</a>
                    <a href="https://laravel-news.com">News</a>
                    <a href="https://blog.laravel.com">Blog</a>
                    <a href="https://nova.laravel.com">Nova</a>
                    <a href="https://forge.laravel.com">Forge</a>
                    <a href="https://vapor.laravel.com">Vapor</a>
                    <a href="https://github.com/laravel/laravel">GitHub</a>
                </div>
            </div>
        </div>
    </body>
</html>

Avobe代码是Laravel页面的基本代码。 但是问题是刀片模板没有应用。 @或{}照原样显示。 (因为代码太长,所以我删除了样式代码的一部分。)

0 个答案:

没有答案