📜  在视图中为循环 laravel 声明变量 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:47.400000             🧑  作者: Mango

代码示例2


@extends('app')
@section('title', 'About Us')

@section('scripts')
    @parent
    
@show

@section('content')
    

This is my body content.

@endsection