@extends('layouts.app') @section('title', $page_title) @section('content')
@forelse($notes as $note)
{{$note->title}}
{{\App\Http\Helper\Helper::datetimeDisplay($note->created_at)}}
{{$note->content}}
@empty
{{__('app.no_record_found')}}
@endforelse
@include('includes.datatables') @endsection