@extends('layouts.app') @section('content')
# | Service | Provider Earnings (%) | Words per Day | Application Directions | |
---|---|---|---|---|---|
{{ $svc->id }} | {{ $svc->service }} | {{ $svc->provider_earnings }} ({{ $svc->provider_earnings * 100 }}) | {{ $svc->words_per_day }} |
# | 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 |