@extends('layouts.app')
@section('title')
Affiliates
@endsection
@section('content')
{!! breadcrumbs(['Site Affiliates' => 'affiliates']) !!}
@if ($open)
@foreach ($featured as $feat)
{!! $feat->icon !!}
@endforeach
@endif
@if ($affiliates->count() > 0)
@foreach ($affiliates as $affiliate)
{!! $affiliate->icon !!}
@endforeach
@else
No affiliates found.
@endif
@endsection