@extends('front.practitioner.import.template.import') @section('content')
Logout
@if( $personalProfile->is_profile_complete == 1 )
View profile
@endif
@include('front.practitioner-fma.fmasetupSolo.steps')
My
Business Hours
@foreach( $practitionerBusinessLocations as $key => $location )
{{ \Illuminate\Support\Str::limit($location->address, 60, '...') }}
@if( count( $location->hours ) > 0 ) @foreach( $location->hours as $k => $v ) @php $day = $v['day'] @endphp
openDay ) && in_array( $day, $location->openDay ) ) Checked @endif type="checkbox" id="{{$day}}-{{$location->id}}-check" class="d-none toggle-day-value" />
{{ ucfirst( $day ) }}
@php $isset = isset( $location->openDay ) && in_array( $day, $location->openDay ) ? 1 : 0; @endphp
openDay ) ) data-value="{{ $v['start_time'] }}" @else data-value="09:00 AM" @endif data-location="{{$location->id}}" data-day="{{ $day }}" data-flag="start" class="timePickerNew d-flex align-items-center" id="{{ $day }}_starttimePicker_{{$location->id}}" @if( in_array( $day, $location->openDay ) ) data-set="1" @else data-set="0" @endif>
To:
openDay ) ) data-value="{{ $v['end_time'] }}" @else data-value="05:00 PM" @endif data-location="{{$location->id}}" data-day="{{ $day }}" data-flag="end" class="timePickerNew d-flex align-items-center" id="{{ $day }}_endtimePicker_{{$location->id}}" @if( in_array( $day, $location->openDay ) ) data-set="1" @else data-set="0" @endif>
@endforeach @else @foreach( $days as $k => $day )
openDay ) && in_array( $day, $location->openDay ) ) Checked @endif type="checkbox" id="{{$day}}-{{$location->id}}-check" class="d-none toggle-day-value" />
{{ ucfirst( $day ) }}
To:
@endforeach @endif
@endforeach
Back
Save & Continue
@endsection @section('css') @endsection @section('import-scripts') @endsection