@extends('admin.layouts.layout') @section('content')

Invoice Notes

@if($permission['create'] ?? true) @endif
@if(!session('tenant_id')) @endif @forelse($data as $note) @if(!session('tenant_id')) @endif @empty @endforelse
TenantLanguage Note Action
{{ $note->tenant->name ?? '-' }}{{ $note->language->name ?? '-' }} {{ $note->short_note ?? '-' }} View @if($permission['edit'] ?? true) Edit @endif @if($permission['destroy'] ?? true) Delete {!! html()->form('DELETE', route('invoice-notes.destroy', $note->id))->attributes(['style' => 'display:none', 'id' => 'delete-form-'.$note->id])->open() !!} {!! html()->form()->close() !!} @endif
No invoice notes found
@endsection @push('page_script') @endpush