@extends('front.practitioner.import.template.import') @section('content')
{{-- @include( 'front.practitioner.import.include.navbar' ) --}}
{{--

Import

--}}
@csrf
{{--

You’ll need to match the following fields to import your treatment notes. Any additional fields you have in your CSV file do not need be matched. We will automatically take those fields and save them into your clients notes.

--}}
@if($data['file_name'] == 'client')

Your CSV file should include, at a minimum, a unique client ID and name. We strongly suggest that your clients possess a mobile number and/or email address, as this will enable them to conveniently make online bookings through your designated booking link. We encourage you to read our helpdesk article here for further guidance.

@elseif($data['file_name'] == 'appointments')

Before importing your Appointment List, make sure that your clients are already added/imported in your My Appointments account. Additionally, ensure that your locations and services are set up prior to initiating this process. To guarantee a successful import, your file should contain Appointment ID and Client ID, along with the correct date and time format, among other requirements. We suggest reading our helpdesk article here for insights.

@elseif($data['file_name'] == 'treatment_notes')

Prior to importing Treatment Notes, ensure the associated appointments in My Appointments are imported and the Appointment ID matches the correct treatment note. Only the following fields require matching during import and any additional fields will be automatically saved in your client's notes. You may read our helpdesk article here for detailed instructions.

@endif

Available import fields

Match fields


@foreach( $data['table_fields'] as $key => $val )

{{ $val['value'] }}


@endforeach

@endsection @section('css') @endsection @section('import-scripts') @endsection