@extends('frontend.layout') @section('title', ($content['title']) . ' — ' . config('app.name')) @php $c = $content ?? []; @endphp @section('content')

Why Choose Us

@if(!empty($c['subtitle']))

{{ $c['subtitle'] }}

@endif
@if(!empty($c['reasons']) && is_array($c['reasons']))
@foreach($c['reasons'] as $i => $reason) @if(!empty($reason['title']))
{{ $i + 1 }}

{{ $reason['title'] }}

{{ $reason['desc'] ?? '' }}

@endif @endforeach
@endif
@endsection