@php use App\Models\Customer; $customers = Customer::all(); $date_from_picker = empty(request()->date_from) ? now()->format('Y-m-d') : request()->date_from; $date_to_picker = empty(request()->date_to) ? now()->format('Y-m-d') : request()->date_to; @endphp @extends('layout.master') @section('content')

Edit Notes

@csrf @method('PUT')
@if($notes->notefiles) @foreach($notes->notefiles as $note) @endforeach @endif
@foreach ($notes->recordings as $key => $recording)
{{ $recording->name }}-{{ $key+1 }}
Delete Audio

@endforeach
@endsection @push('scripts') @endpush