@component('laravel-crm::components.card')
@include('laravel-crm::layouts.partials.nav-activities')

{{ ucfirst(__('laravel-crm::lang.notes')) }}

@if($notes && $notes->count() > 0) @foreach($notes as $note) @livewire('note',[ 'note' => $note, 'view' => 'note-table' ], key($note->id)) @endforeach @else @endif
{{ ucfirst(__('laravel-crm::lang.created')) }} {{ ucfirst(__('laravel-crm::lang.note')) }} {{ ucfirst(__('laravel-crm::lang.noted_at')) }} {{ ucfirst(__('laravel-crm::lang.created_by')) }}
{{ ucfirst(__('laravel-crm::lang.no_notes')) }}
@if($notes instanceof \Illuminate\Pagination\LengthAwarePaginator ) @component('laravel-crm::components.card-footer') {{ $notes->links() }} @endcomponent @endif @endcomponent