@extends('web.layouts.main') @section('content')

خدماتنا

@foreach($types as $type)

{{$type->name}}

{{$type->description}}

@foreach(services($type->id) as $row) @if(count(steps($row->id)) == 0)
{{$row->name}}

{{$row->description}}

@else
{{$row->name}}
الخطوات :

@foreach(steps($row->id) as $step) • {{$step->step}}
@endforeach

@endif @endforeach
@endforeach
@stop