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