@extends('admin.layout.base') @section('title', 'Service Types ') @section('content')
@if(Setting::get('demo_mode') == 1)
** Demo Mode : No Permission to Edit and Delete.
@endif
Service Types
Add New Service @foreach($services as $index => $service) @endforeach
ID Service Name Provider Name Capacity Base Price Price Calculation Service Image Time Based Price Rental Action
{{ $index + 1 }} {{ $service->name }} {{ $service->provider_name }} {{ $service->capacity }} {{ currency($service->fixed) }} @lang('servicetypes.'.$service->calculator) @if($service->image) @else N/A @endif Rental
{{ csrf_field() }} {{ method_field('DELETE') }} @if( Setting::get('demo_mode') == 0) Edit @endif
ID Service Name Provider Name Capacity Base Price Price Calculation Service Image Time Based Price Action
@endsection