@extends('layouts.app') @section('title', $page_title) {{-- Include global DataTable styling --}} @include('components.datatable-styles') @section('content')
{{ __('app.notes') }}

{{ __('app.notes_description') }}

@forelse($notes as $note)
@if($note->is_pinned)
@endif
{{$note->title}}
{{\App\Http\Helper\Helper::datetimeDisplay($note->created_at)}}

{{$note->content}}

{{__('app.edit')}}
@empty
{{__('app.no_notes_found')}}

{{__('app.no_notes_found_description')}}

{{__('app.create_first_note')}}
@endforelse
@include('includes.datatables') @push('scripts') @endpush @endsection