2016-05-19 15:01:28 +01:00
|
|
|
@extends('master')
|
|
|
|
|
|
|
|
@section('title')
|
|
|
|
List Notes « Admin CP
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<p>Select note to edit:</p>
|
|
|
|
<ol reversed>
|
|
|
|
@foreach($notes as $note)
|
2017-03-03 13:22:21 +00:00
|
|
|
<li><a href="/admin/notes/{{ $note->id }}/edit">{{ $note->originalNote }}</a></li>
|
2016-05-19 15:01:28 +01:00
|
|
|
@endforeach
|
|
|
|
</ol>
|
|
|
|
@stop
|