@forelse($meeting->actions->groupBy('added_by') as $actions)
@lang('performance::messages.actionPointsByUser') @if ($actions->first()->addedBy)
@else
--
@endif
@foreach ($actions as $key => $action)
{{ $key + 1 }}
{{ Str::limit($action->action_point, 200) }}
@if (strlen($action->action_point) > 200)
@lang('performance::app.viewMore')
@endif
@if ($hasAccess && $meeting->status == 'pending')
@endif
@endforeach
@empty
@endforelse @if ($hasAccess && $meeting->status == 'pending')
@if (count($meeting->actions) > 0)
@lang('performance::app.addMoreActionPoint')
@else
@lang('performance::app.addActionPoint')
@endif
@endif