@extends('front.layout.app') {{ $title ?? 'Services' }} @section('content')

Our Services

@foreach($services as $index => $service) @if($index % 2 == 0)

{{ $service->name }}

{{ $service->long_description ?? 'No detailed description available.' }}

@else
@if($service->name === 'Laser Blasting')

{{ $service->name }} (Coming Soon)

@else

{{ $service->name }}

@endif

{{ $service->long_description ?? 'No detailed description available.' }}

@endif @endforeach
@endsection