Last active
August 29, 2015 13:57
-
-
Save Rokt33r/9861712 to your computer and use it in GitHub Desktop.
Laravel 基礎 Lesson 5 - Blade & Helper (app/views/posts/index.blade.php)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.master') | |
@section('title') | |
Posts list - mylaravel | |
@stop | |
@section('body') | |
<h1>Posts list {{link_to('posts/create','create a new post'))}}</h1> | |
<ul> | |
@foreach($posts as $post) | |
<h2>{{link_to('posts/'.$post->id,$post->title)}} | |
</h2> | |
<p>{{$post->body}}</p> | |
@endforeach | |
</ul> | |
@stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment