@lang('app.service') @lang('app.detail')

@lang('app.service') @lang('app.name')

{{ $businessService->name }}

@lang('app.discount') @lang('app.type')

{{ $businessService->discount_type }}

@if ($businessService->discount_type == 'percent')
@lang('app.percentage')

{{ $businessService->discount }}%

@else
@lang('app.amount')

{{ $businessService->price - $businessService->discount }}

@endif
@lang('app.location')

{{ $businessService->location->name }}

@lang('app.category')

{{ $businessService->category->name }}

@lang('app.service') @lang('app.type')

{{ ucWords($businessService->service_type) }}

@if (!is_null($businessService->description))
@lang('app.description')

{!! $businessService->description !!}

@endif