facebook twitter hatena line email

「Php/laravel/laravel5/layout」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「vi resources/views/hello/layouts.blade.php <!DOCTYPE HTML> <html lang="ja"> <head> <meta charset="utf-8" /> </head> <body> @yield('content') </body>...」)
 
(相違点なし)

2016年8月3日 (水) 19:18時点における最新版

vi resources/views/hello/layouts.blade.php

<!DOCTYPE HTML>
<html lang="ja">
  <head>
    <meta charset="utf-8" />
  </head>
  <body>
  @yield('content')
  </body>
</html>

vi resources/views/hello/index.blade.php

@extends('hello.layouts')
@section('content')
<h1>helloworld</h1>
@stop