@extends('layouts.'.env('THEME'))
@section('moreStyle')
@include('staff.notes.style')
@endsection
@section('content')
Add to feed
@php
$filter_fields = [
'getAuthor+name' => ['title' => 'author', 'type' => 'text'],
'getSubjectLead+fullname' => ['title' => 'customer', 'type' => 'text'],
'type' => ['title' => 'type', 'type' => 'text'],
];
@endphp
@foreach($notes as $note)
@endforeach
@endsection
@section('script')
@include('staff.notes.script')
@endsection