2016-05-19 15:01:28 +01:00
|
|
|
@extends('master')
|
|
|
|
|
|
|
|
@section('title')
|
2016-12-10 11:48:17 +00:00
|
|
|
Tagged Notes «
|
2016-05-19 15:01:28 +01:00
|
|
|
@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
|
2016-12-10 11:48:17 +00:00
|
|
|
@stop
|