Skip to content

Instantly share code, notes, and snippets.

@Rokt33r
Created March 29, 2014 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rokt33r/9861742 to your computer and use it in GitHub Desktop.
Save Rokt33r/9861742 to your computer and use it in GitHub Desktop.
Laravel 基礎 Lesson 5 - Blade & Helper (app/views/posts/show.blade.php)
@extends('layouts.master')
@section('title')
{{$post->title}} - mylaravel
@stop
@section('body')
<h1>{{$post->title}}</h1>
<p>{{$post->body}}</p>
{{link_to('posts', 'Back to list')}}
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment