< Feed
@if(!empty($time_slot))
< Appointment
@endif
@if(!empty($time_slot))
Adding note to appointment
{!! $time_slot->getAdminInfoLine() !!}
@foreach($time_slot->notes as $note)
@endforeach
@endif
{!! Form::open(
['route' => ['note.store'], 'files' => true,
'id' => 'new_note_form'
]) !!}
{!! Form::token() !!}
{!! Form::hidden('author_id', auth()->user()->id) !!}
@if(!empty($time_slot))
{!! Form::hidden('time_slot_id', $time_slot->id) !!}
@endif
@include('staff.notes.form')
{!! Form::submit('Add', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection
@section('script')
@include('staff.notes.script')
@endsection