@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('View') , 'headerData' => __('Employee') , 'url' => 'owner/attendance' , 'class' => 'col-lg-7' ])
{{count($emp->services)}} {{__('Services')}}
{{count($appointment)}} {{__('Appointments')}}
{{count($client)}} {{__('Clients')}}

{{ $emp->name }}

{{__('Phone :')}} {{$emp->phone}}
{{__('Email :')}} {{$emp->email}} @if ($give_service == "Both")
{{__('Give Services At :')}} @if ($emp->give_service == "Both") {{__($businessLabelTitleCase.' & Home')}} @else {{ $emp->give_service }} @endif @endif
{{__('Commission :')}} {{$emp->commission_percentage == 0 ? __('No Commission') : $emp->commission_percentage.'%' }}

{{__('Edit Employee')}}

{{__('View Employee')}}

{{__('Services of')}} {{$emp->name}}
@if (count($emp->services) != 0)
@foreach ($emp->services as $ser)
Service Image

{{$ser->name}}

{{__('Category :')}} {{$ser->category->name}}
@if ($ser->status == 1) {{__('Active')}} @else {{__('Inactive')}} @endif
{{__('Price :')}} {{$symbol->currency_symbol}}{{$ser->price}}
{{__('Time :')}} {{$ser->time}} {{__('Min')}}
@endforeach
@else
{{__('No Services Available')}}
@endif
{{__('Timing of')}} {{$emp->name}}