@extends('master')
@section('title')
{{ strip_tags($note->note) }} « Notes «
@stop
@section('content')
@include('templates.note', ['note' => $note])
@foreach($replies as $reply)
@endforeach
@if(count($likes) > 0)
Likes
@endif
@foreach($likes as $like)
![profile picture of {{ $like['author']['properties']['name'][0] }}]({{ $like['author']['properties']['photo'][0] }})
@endforeach
@if(count($reposts) > 0)
Reposts
@endif
@foreach($reposts as $repost)
{{ $repost['author']['properties']['name'][0] }}
reposted this at {{ $repost['published'] }}.
@endforeach
@stop
@section('scripts')