{{__('labels.lastname')}} | {{__('labels.invitation_date')}} | {{__('labels.headers.role')}} | {{__('labels.issue')}} | {{__('labels.invitation_message')}} | {{__('labels.invitation_status')}} | {{__('labels.invitation_reminder')}} |
---|---|---|---|---|---|---|
{{ $inv['firstname'].' '.$inv['lastname'] }} | {{ $inv['sending_date'] }} | {{ Str::ucfirst(__('labels.roles.'.$inv['role']['name'])) }} | {{ $inv['entity_type'] == config('app.taggables.journal') ? __('labels.all_issues') : Str::limit($inv['issue_title'], 30, '...') }} | {{ __('labels.show_invitation_message') }} | @if($inv['status_id'] == 1) {{ __('labels.invitation_pending') }} @elseif($inv['status_id'] == 2) @if(isset($inv['user_accepting_invitation']['accepting_date'])) {{ __('labels.invitation_accepted').' '.$inv['user_accepting_invitation']['accepting_date'] }} @endif @elseif($inv['status_id'] == 3) @if(isset($inv['user_rejecting_invitation']['rejecting_date'])) {{ __('labels.invitation_rejected').' '.$inv['user_rejecting_invitation']['rejecting_date'] }} @endif @endif |
@foreach($inv['reminders'] as $remind)
{{ __('labels.invitation_to_remind') }} @elseif($inv['status_id'] != 1 && count($inv['reminders']) == 0)— @endif |