Tidy up admin cp note related views
This commit is contained in:
parent
7c11b08feb
commit
df1f2758cd
8 changed files with 7 additions and 7 deletions
14
resources/views/admin/notes/list.blade.php
Normal file
14
resources/views/admin/notes/list.blade.php
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue