Laravel Blade 引擎无法正常工作
Laravel Blade engine does not work properly
我已经在主机上上传了我的 laravel 5.5 应用程序。
我的问题是当我尝试使用
@extends('layouts.app')
@section('content')
///
@endsection
在我看来,HTML 工作正常,但 blade 模板不工作。
同样,当我用浏览器检查源代码时,我发现“@”标记不存在。
我的浏览器源代码:
extends('layouts.app')
section('content')
///
endsection
帮帮我! :)
为了使用 Blade 引擎,请确保您的视图以 .blade.php
扩展名命名,就像 Cy Rossignol mentioned in the comment. Example : home.blade.php
. You can read the docs here
我已经在主机上上传了我的 laravel 5.5 应用程序。
我的问题是当我尝试使用
@extends('layouts.app')
@section('content')
///
@endsection
在我看来,HTML 工作正常,但 blade 模板不工作。
同样,当我用浏览器检查源代码时,我发现“@”标记不存在。
我的浏览器源代码:
extends('layouts.app')
section('content')
///
endsection
帮帮我! :)
为了使用 Blade 引擎,请确保您的视图以 .blade.php
扩展名命名,就像 Cy Rossignol mentioned in the comment. Example : home.blade.php
. You can read the docs here