@extends('layouts.horizontal', ['title' => 'Price List', 'topbarTitle' => 'Services']) @section('css') @vite(['node_modules/select2/dist/css/select2.min.css']) @vite(['node_modules/flatpickr/dist/flatpickr.min.css']) @endsection @section('content')

Price List

{{ session('user_role') }}

Service Type

    @foreach($service_types as $service_type)
  • {{ $service_type->service_type }}
  • @endforeach

Service Category

    @foreach($service_categories as $service_category)
  • {{ $service_category->service_category }}
  • @endforeach

Service

    @foreach($services as $service)
  • {{ $service->id_business_services }} - {{ $service->service_name }} With {{ $tax_rate_value }}% tax
    {{ config('constants.CURRENCY') }} {{ number_format($service->service_rate * (1 + $tax_rate_value / 100), 2) }}
  • @endforeach
@endsection @section('scripts') @endsection