@lang('workflow::labels.service') |
{{ $transaction->service_name_slug }} |
@if($transaction->status != "END")
@lang('workflow::labels.assigned_to') |
{{ $transaction->assigned_to_username }} |
@lang('workflow::labels.current_step') |
{{ $transaction->currentWorkflowStep->role->name }} |
@endif
@canShowPrintStatus($transaction)
@lang('workflow::labels.printer_status') |
@if($transaction->printed =="Y")
@else
@endif
|
@endcanShowPrintStatus
@lang('labels.workflow.status') |
{{ $transaction->status }} |
@isset($invoice)
@lang('labels.invoice.invoice_status') |
{{ $invoice->status }}
@canViewInvoice($invoice)
view invoice
@endCanViewInvoice
|
@endisset
@isset($transaction->manageOwnership->workflow_type)
@lang('service::labels.manage_ownership.step2') |
{{strtoupper($transaction->manageOwnership->workflow_type)}} OWNERSHIP |
@endisset
@if($transaction->status == "REJECTED")
@lang('labels.reject_reason_wkflw') |
{{ $transaction->comments }} |
@endif
@if($transaction->status == "CANCELLED")
@lang('labels.cancel_reason') |
{{ $transaction->comments }} |
@endif
@php
$transactionWorkflow = resolve('Modules\\Transaction\\Entities\\TransactionWorkflow')::where('transaction_id',$transaction->id)
->where('action','RESTORED')->latest()->first();
@endphp
@if ($transactionWorkflow && $transaction->status != "CANCELLED")
@lang('labels.restore_reason') |
{{ $transaction->comments }} |
@endif
@isset($transaction->businessTradeMark->status)
Trademark @lang('service::labels.trademark_objection.status') |
{{ str_replace('_', ' ', $transaction->businessTradeMark->status) }}
@if($transaction->businessTradeMark->status == 'WAITING_FOR_OBJECTIONS')
({{ \Carbon\Carbon::parse($transaction->businessTradeMark->objection_initiation_date)->addDays(30)->diffInDays(\Carbon\Carbon::now()) }} @if(\Carbon\Carbon::parse($transaction->businessTradeMark->objection_initiation_date)->addDays(30)->diffInDays(\Carbon\Carbon::now()) === 1) Day @else Days @endif Remaining)
@endif
|
@endif