@extends('admin.layout.base') @section('title', 'Service Types ') @section('content')
@if(Setting::get('demo_mode') == 1)
** Demo Mode : @lang('admin.demomode')
@endif
Service Types
Add New Service @foreach($services as $index => $service) @endforeach
ID Service Name Capacity Base Price Distance Price Between Kms Less Distance Price Greater Distance Price Price Calculation Calculation Format Cancellation Charges Service Image Action
{{ $index + 1 }} {{ $service->name }} {{ $service->capacity }} {{ currency($service->fixed) }} {{ currency($service->price) }} {{ currency($service->between_km) }} {{ currency($service->less_distance_price) }} {{ currency($service->greater_distance_price) }} @lang('servicetypes.'.$service->calculator) {{$service->calculation_format}} {{$service->cancellation_charges}} @if($service->image) @else N/A @endif
{{ csrf_field() }} {{ method_field('DELETE') }} @if( Setting::get('demo_mode') == 0) Edit @endif
ID Service Name Capacity Base Price Distance Price Between Kms Less Distance Price Greater Distance Price Price Calculation Calculation Format Cancellation Charges Service Image Action
@endsection