@extends('layout.app') @section('title') Study Abroad @endsection @section('content')

{{$service->name}}

{!!strip_tags($service->short_description)!!}
@foreach($visas as $visa) {{$visa->name}} @endforeach
@php $sections = $service->visa_service_sections()->where('status','1')->orderby('order_by','asc')->get();; @endphp @if($sections->count() > 0) @php $first_section = $sections[0]; @endphp
@if($first_section->count() > 0)

{{$first_section->title}}

{{$first_section->sub_title}}

{!!$first_section->description!!}
@endif @php $second_section = $sections[1]; @endphp @if($second_section->count() > 0)

{{$second_section->title}}

{!!$second_section->description!!}
@endif
@endif
@endsection