@extends('layouts.admin') @section('content')

Our Services

Professional services tailored to your business needs

Filter by Category
All Services @foreach($categories as $category) {{ $category->name }} @endforeach
@forelse($services as $service)
@if($service->image_url) {{ $service->name }} @else
@endif
@if($service->category) {{ $service->category->name }} @endif @if($service->duration) {{ $service->duration }} @endif
{{ $service->name }}

{{ Str::limit($service->description, 120) }}

@if($service->capabilities && count($service->capabilities) > 0)
Key Capabilities:
    @foreach(array_slice($service->capabilities, 0, 3) as $capability)
  • {{ $capability }}
  • @endforeach @if(count($service->capabilities) > 3)
  • and {{ count($service->capabilities) - 3 }} more...
  • @endif
@endif @if($service->pricingTiers->count() > 0)
@php $minPrice = $service->pricingTiers->where('is_quote_based', false)->min('price'); @endphp @if($minPrice)
Starting at ${{ number_format($minPrice, 2) }}
@else
Contact for Quote
@endif
@endif
@empty

No Services Found

We're working on adding more services. Please check back soon!

@endforelse
@endsection