@extends('seller.layouts.app') @section('panel_content')

{{ translate('All Notes') }}

@if(get_setting('seller_can_add_note')) @endcan
{{ translate('notes') }}
@foreach ($notes as $key => $note) @php $user = auth()->user(); @endphp @endforeach
# {{ translate('User') }} {{ translate('Type') }} {{ translate('Description') }} {{ translate('Options') }}
{{ $key + 1 + ($notes->currentPage() - 1) * $notes->perPage() }} {{ $note->user_id == $user->id ? $user->shop->name : get_setting('site_name') }} {{ translate($note->note_type) }}

{{ $note->getTranslation('description') }}

@if($note->user_id == auth()->id()) @endif
{{ $notes->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection