@extends('admin.layouts.app') @section('content') @include('admin.layouts.partial.toolbar', ['breadcrumb' => 'Mapping Details']);

Mapping Details

@foreach ($mapping->services as $service) @endforeach
Category Service Sub Service Quantity Price Total
{{ $service->category_name }} {{ $service->service_name }} {{ $service->sub_service_name }} {{ $service->qty }} {{ $service->price }} {{ numberFormat($service->price * $service->qty) }}
@endsection