Tidy up admin cp note related views

This commit is contained in:
Jonny Barnes 2017-03-02 18:22:52 +00:00
parent 7c11b08feb
commit df1f2758cd
8 changed files with 7 additions and 7 deletions

View file

@ -0,0 +1,14 @@
@extends('master')
@section('title')
List Notes « Admin CP
@stop
@section('content')
<p>Select note to edit:</p>
<ol reversed>
@foreach($notes as $note)
<li><a href="/admin/note/edit/{{ $note->id }}">{{ $note->originalNote }}</a></li>
@endforeach
</ol>
@stop