@extends('../layout/' . layout()) @section('subhead') @translate(Notes) @endsection @section('subcontent')

@translate(Notes)

@translate(Add New Notes)
@forelse ($notes as $note) @empty @endforelse
@translate(ICON) @translate(TITLE) @translate(NOTE) @translate(STATUS) @translate(CREATED) @translate(ACTIONS)
{{ $note->title }}
{{$note->title }} {{ strip_tags($note->note) }}
{{ $note->status == 1 ? 'Active' : 'Inactive' }}
{{ $note->created_at->diffForHumans() }}
#note-not-found
Showing {{ $notes->firstItem() ?? '0' }} to {{ $notes->lastItem() ?? '0' }} of {{ $notes->total() }} entries
{{ $notes->links('vendor.pagination.custom') }}
@endsection @section('script') @endsection