@extends('layouts.app') @section('content')

{{ $service->name }}

{{-- SIDEBAR --}}

Services


{{-- CONTENT --}}
{{-- SERVICE INFO --}}

{{ $service->name }}

{!! $service->description !!}
{{-- COVER IMAGE --}} @if ($service->cover)
{{ $service->name }}
@endif {{-- GALLERY IMAGE SERVICE (JSON) --}} @if (!empty($service->image)) @endif {{-- FAQ --}} @if ($Faq->count())

Frequently Asked Questions

@foreach ($Faq as $index => $faq)
{!! $faq->answer !!}
@endforeach
@endif {{-- BROCHURE --}} @if ($Brochure->count())

Download Our Brochure

Learn more about our logistics services.

@foreach ($Brochure as $brosur) {{ $brosur->name }} @endforeach
@endif
@endsection