@extends('layouts.admin') @section('content')
{{ csrf_field() }}
 
 
 
 

@if($notes) @foreach($notes as $note) @endforeach @endif
Added Date Added By Status Message Actions
{{ $note->created_at->format('m/d/Y') }} {{ $note->username }} {{ $note->status }} {!! nl2br($note->message) !!}
@endsection @section('scripts') @endsection