@extends('layouts.app') @section('content')
# | Category | Parent Category | Allowed Provider Services | |
---|---|---|---|---|
{{ $cat->id }} | {{ $cat->name }} | {{ $cat->getParentService($cat->id)->first() }} |
@foreach ($cat->get_allowed_provider_services() as $allowed_svc)
@foreach ($provider_svcs as $svc)
@if ($allowed_svc['provider_svc_id'] === $svc->id)
{{ $svc->service }} @endif @endforeach @endforeach |