@extends('layouts.layout') @section('title', 'Servicios') @section('background', asset('img/servicio.jpg')) @section('content')

Servicios

Automatización y control tanto a nivel industrial como comercial

@foreach ($services as $service) @php $pos = $loop->index % 4; switch ($pos) { case 0: $delay = ''; break; case 1: $delay = 'delay-100'; break; case 2: $delay = 'delay-200'; break; case 3: $delay = 'delay-300'; break; default: $delay = ''; break; } @endphp
{{ $service->title }}

{{ $service->title }}

{{ $service->description }}

@endforeach
@endsection