@extends('layouts.app') @section('title', 'Services Master Catalog') @section('content')

Services Master Catalog

Service fees breakdown: Government Fee, Typing Fee, Service Charge, and UAE 5% VAT.

+ Add New Service
@foreach($services as $service) @endforeach
Service Code Service Name Category Gov Fee Typing / Service Fee VAT (5%) Total Price Action
{{ $service->service_code }}
{{ $service->name_en }}
{{ $service->name_ar }}
{{ $service->category ? $service->category->name_en : 'General' }} AED {{ number_format($service->gov_fee, 2) }} AED {{ number_format($service->typing_fee + $service->service_charge, 2) }} AED {{ number_format($service->vat_amount, 2) }} AED {{ number_format($service->total_price, 2) }} Edit Service
{{ $services->links() }}
@endsection