@extends('home.layout.app') @section('title', 'Services') @section('content')

Our Services

B612 Freight Forwarder is obsessed with educating the customer, ensuring solutions get implemented correctly and also with long term relationship building.

QUOTE icon
service-banner
@foreach($services as $service)
{{-- Service Title --}}

{{ $service->title }}

{{-- LEFT --}}
{{-- Special Services / Bullet Points --}} @if(!empty($service->list_items))

{{ $service->subtitle }}

    @foreach($service->list_items as $item)
  • {{ $item }}
  • @endforeach
@endif {{-- Gallery Thumbnails --}} @if(!empty($service->gallery_images)) @endif
{{-- RIGHT --}}
{{-- Main Image --}} @if($service->main_image)
{{ $service->title }}
@endif {{-- Description --}}

{!! $service->description !!}

@endforeach
@endsection