@extends('layouts.admin') @section('title','Services') @section('heading','Service marketplace') @section('content')

Create service offering

@csrf
@forelse($services as $service)@empty@endforelse
ServiceProviderModeDurationPriceStatus
{{ $service->name }}{{ $service->vendor?->name }}{{ str_replace('_',' ',$service->delivery_mode) }}{{ $service->duration_minutes }} min{{ number_format((float)$service->price,2) }}{{ $service->is_active?'Active':'Inactive' }}Review
No services found.
@endsection