@extends('layouts.app') @section('title', __('Services')) @section('content')

{{ __('Find the Perfect Service') }}

{{ __('Browse through our wide range of services and find the perfect match for your needs.') }}

{{ __('Filters') }}
{{ __('Categories') }}
@foreach($categories as $category)
id, request('categories', [])) ? 'checked' : '' }}>
@endforeach
{{ __('Price Range') }}
{{ __('Rating') }}

{{ __('Available Services') }}

{{ $services->total() }} {{ __('services found') }}

@forelse($services as $service)
{{ $service->name }} @if($service->is_featured) {{ __('Featured') }} @endif
{{ $service->category->name }}
@for($i = 1; $i <= 5; $i++) @endfor ({{ $service->reviews_count }})
{{ $service->name }}

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

{{ $service->price_formatted }} @if($service->original_price > $service->price) {{ $service->original_price_formatted }} @endif
{{ __('View Details') }}
@empty
{{ __('No services found matching your criteria. Please try different filters.') }}
@endforelse
{{ $services->appends(request()->except('page'))->links() }}
@endsection @section('scripts') @endsection