@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Tickets') }}

@include('common.demo') @include('common.errors')

{{ __('Internal Notes') }}


#{{$ticket->tid}} - {{ $ticket->title }}

@csrf
@error('internal_note')
{{ $message }}
@enderror
@foreach($ticket_notes as $note)
image
{{$note->noteUser->name}}
{{$note->noteUser->role}}
{{$note->created_at->diffForHumans()}}
@csrf @method('DELETE')

{!!$note->message!!}.

@endforeach {{ $ticket_notes->links("pagination::bootstrap-4") }}
@endsection