@extends('crm.layouts.app') @section('content')
@include('crm.customer.common.contact_inner_sidebar')
@csrf @method('PUT')
{{__('Customer Notes')}} {{__('New Note')}}
@foreach ($notes as $note)

{{__('Added By')}} - {{@$note->user->name}} {{@$note->created_at}}

{{$note->note}}
@endforeach
@endsection @section('scripts') @include('crm.customer.note_js') @endsection