@php $menuItems = [ [ 'text' => __('lang.view'), 'url' => route('project.agreements.show', ['uuid' => $row->uuid]), 'target' => '_blank', 'icon' => 'mdi:eye' ], [ 'show' => $row->isAccepted() && $row->fileExists(), 'text' => __('lang.download'), 'url' => route('project.agreements.download', ['uuid' => $row->uuid]), 'target' => '_blank', 'icon' => 'mdi:download' ], [ 'show' => $row->isAccepted() && $row->fileExists(), 'text' => __('lang.print'), 'url' => route('project.agreements.print', ['uuid' => $row->uuid]), 'target' => '_blank', 'icon' => 'mdi:printer' ], [ 'show' => $row->isAccepted() && $row->fileExists(), 'text' => __('lang.send'), 'icon' => 'mdi:send', 'attributes' => 'wire:click="openModalSendAgreement(\'' . $row->uuid . '\')"' ], ]; @endphp