@if(!session('tenant_id'))
| {{ $note->tenant->name ?? '-' }} |
@endif
{{ $note->language->name ?? '-' }} |
{{ $note->short_note ?? '-' }} |
@if($permission['edit'] ?? true)
@endif
@if($permission['destroy'] ?? true)
{!! html()->form('DELETE', route('invoice-notes.destroy', $note->id))->attributes(['style' => 'display:none', 'id' => 'delete-form-'.$note->id])->open() !!}
{!! html()->form()->close() !!}
{!! $note->invoice_note !!}
@endif
|
@empty