@extends('layouts.admin') @section('page-title') {{__(' Notes')}} @endsection @section('links') @if(\Auth::guard('client')->check()) @else @endif @endsection @section('action-button') @auth('web') @endauth @endsection @section('content') @if($currentWorkspace)
{{ __('Personal Notes') }}
@if(count($personal_notes) > 0)
@foreach($personal_notes as $note)
{{$note->title}}
{{$note->text}}
@endforeach
@else
{{ __('No Personal Notes available') }}
@endif
{{ __('Shared Notes') }}
@if(count($shared_notes) > 0)
@foreach($shared_notes as $note)
{{$note->title}}
{{$note->text}}
@endforeach
@else
{{ __('No Shared Notes available') }}
@endif
@else

404

{{ __('Page Not Found') }}
@endif @endsection @push('scripts') @endpush