@extends('admin.layouts.layout') @section('content')
| {{ __('Sort') }} | {{ __('Service Name') }} | {{ __('Service Type') }} | {{ __('Fee Type') }} | {{ __('Base Fee') }} | {{ __('Duration') }} | {{ __('Language') }} | {{ __('Sort Order') }} | @if($permission['edit'] || $permission['destroy']){{ __('Action') }} | @endif|
|---|---|---|---|---|---|---|---|---|---|
|
|
{{ $row->service_name }}
@if($row->short_name_of_service)
{{ $row->short_name_of_service }}
@endif
|
{{ ucfirst($row->service_type) }} | {{ ucfirst(str_replace('_', ' ', $row->fee_type)) }} | @if($row->fee_type == 'Fixed') {{ \App\Helpers\Helper::price($row->fee ?? 0) }} @elseif($row->fee_type == 'Variable') {{ \App\Helpers\Helper::price($row->base_fee ?? 0) }} + {{ \App\Helpers\Helper::price($row->fee_per_sqft ?? 0) }}/sqft @else {{ \App\Helpers\Helper::price($row->base_fee ?? 0) }} @endif | @if($row->duration) {{ $row->duration }} Minute{{ $row->duration > 1 ? 's' : '' }} @else - @endif | @if($row->language) {{ $row->language->name }} @else - @endif | @if($permission['edit'] || $permission['destroy'] || $permission['show']) | @endif | |
|
{{ __('No Services Found') }} |
|||||||||