@extends('layouts.app') @section('css') {{-- select2 css --}} @endsection @section('content')
{{ $project->name }}  {{ $project->status_name }}
@include('layouts.includes.project_navbar')
{{csrf_field()}}
@if(count($notes) > 0 )
{{ __('Notes') }}
    @foreach($notes as $note)
  • @if($note->user_id == Auth::user()->id) @if(Helpers::has_permission(Auth::user()->id, 'delete_project_note'))
    {{ csrf_field() }}
    @endif @if(Helpers::has_permission(Auth::user()->id, 'edit_project_note')) @endif @endif
    {{ $note->full_name }} {{ timeZoneformatDate($note->created_at) }} - {{ date_format(date_create($note->created_at), 'g:i A') }}
    {{ __('Subject') }}: {!! $note->subject !!}
    {!! $note->content !!}
  • @endforeach
@endif
{{-- Modal Start--}}
{{-- Loading --}}

{{ __('Loading..') }}
@include('layouts.includes.message_boxes') @endsection @section('js') {{-- Validate js --}} {{-- Classic editor --}} {!! translateValidationMessages() !!} @endsection