测试路由
Route::get(‘/‘, function() { $value = [1,2,3]; return View::make(‘home.index‘, array(‘data‘ => $value)); });
views下面的目录结构
/Applications/MAMP/htdocs/testApp/app/views mac:views mmc$ tree . ├── home │ └── index.blade.php └── mylayout └── test_layout.blade.php
index.blade.php
@extends(‘mylayout.test_layout‘) @section(‘aaa‘) <?php foreach($data as $item){ echo $item; } ?> @stop
test_layout.blade.php
<html> asdasdasd @yield(‘aaa‘) </html>
时间: 2024-10-09 19:59:45