@extends('layouts.app') @section('content') {{--
--}}
@section('preferences')
@include('search.form')
@if (canTask('can_assign')) Add New @endif 18
@show

INVOICES


@foreach ($task->invoices as $invoice)
@csrf
@if ($invoice->first_invoice == 1)
@endif
@if ($invoice->first_invoice == 1)
@endif
+
@if ($invoice->first_invoice == 0 && $invoice->invoice_status == 0) Delete @endif View Client Data

@endforeach
@csrf
Last edited {{ SetTimeZoneFormat($task->updated_at, 'time_ago_short') }} ({{ SetTimeZoneFormat($task->updated_at, 'day_date_time') }}) by {{ $task->user->name }}





Cancel / Back @if ($can_edit == 1) @endif
@if ($can_edit == 1) {!! $task->dropdownBadge('status') !!} @else {!! $task->dropdownBadge('status', false) !!} @endif
@csrf
@if ($can_edit == 1) @endif
@if( $can_assigne == 1 )
@csrf
@endif
TASKS
@if ($can_edit == 1) Add New Task @endif

@forelse ( $microtasks as $microtask )
{!! $microtask->createdBy->avatar !!}
@if( canTask('can_delete') ) @endif @if ($can_edit == 1) @endif
@if ($can_edit == 1) {!! $microtask->dropdownBadge() !!} @else {!! $microtask->dropdownBadge(false) !!} @endif
{{ $microtask->re }}
{{ $microtask->createdBy->name }} created: {{ SetTimeZoneFormat($microtask->created_at, 'time_ago') }} ({{ SetTimeZoneFormat($microtask->created_at, 'day_date_time') }})

{!! preg_replace('/\r\n/', '
', preg_replace('/\r\n\r\n/', '

', $microtask->note ?? '')) !!}

@forelse ( $microtask->notes as $note )
{!! $note->user->avatar !!}
@if( canTask('can_delete') ) @endif
{{ $note->user->name }} {{ SetTimeZoneFormat($note->created_at, 'time_ago') }} ({{ SetTimeZoneFormat($note->created_at, 'day_date_time') }})

{!! preg_replace('/\r\n/', '
', preg_replace('/\r\n\r\n/', '

', $note->note ?? '')) !!}

Hours: {{ $note->hours }}
@empty

There are no notes yet

@endforelse
@empty

There are no tasks yet

@endforelse
@csrf
@csrf
@csrf
@csrf
@endsection @section('more_scripts') @include('tasks.edit-js') @include('tasks.edit-css') @endsection