jonnybarnes.uk/resources/views/taggednotes.blade.php

13 lines
311 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
@extends('master')
@section('title')
Notes <?php echo html_entity_decode('&laquo;'); ?> Jonny Barnes
@stop
@section('content')
<h2>Notes tagged with <em>{{ $tag }}</em></h2>
@foreach ($notes as $note)
<div>{!! $note->note !!}
<a href="/note/{{ $note->id }}">{{ $note->human_time }}</a></div>
@endforeach
@stop