代码之家  ›  专栏  ›  技术社区  ›  Rat Kabu

@laravel上的产量(“内容”)不仅仅适用于纯白色文本

  •  1
  • Rat Kabu  · 技术社区  · 7 年前

    我已经安装了Laravel Blade Highlighter。。

    @yield@section@endsection不起作用,只是一个纯白色文本。。

    我的观点运行正常。。我可以浏览好的。。

    这是我的代码:

        Route::get('/', 'PagesController@index');
    Route::get('/about', 'PagesController@about');
    Route::get('/services', 'PagesController@services');
    

    页面控制器。php

    namespace App\Http\Controllers;
    
    use Illuminate\Http\Request;
    
    class PagesController extends Controller
    {
        public function index(){
            return view('pages.index');;
        }
    
        public function about(){
            return view('pages.about');
        }
    
        public function services(){
            return view('pages.services');
        }
    
    }
    

    <h1>This is the laravel</h1>
    @yield('content')
    

    指数php:

    @extends('layouts.app')
    
    @section('content')
        <h1>Welcome to Laravel</h1>
        <p>this is a content</p>
    @endsection
    
    1 回复  |  直到 7 年前
        1
  •  1
  •   Rat Kabu    7 年前

    答案是我应该关闭我的sublime文本上所有打开的选项卡。。

    和索引。php,关于。php和服务。php应该是索引。刀身php,关于。刀身php和服务。刀身php