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

Our Providers

@if ($available_filter === 'unavailable') @if (!empty($editorsearch) || !empty($specialties)) Unavailable Editors @else All Unavailable Editors @endif @elseif($available_filter === 'available') @if (!empty($editorsearch) || !empty($specialties)) Available Editors @else All Available Editors @endif @endif


@if (count($editors) == 0)

No editors were found using the selected filters.

@else
@foreach ($editors as $provider_user_acct)
@include('partials.single_editor', ['user' => $provider_user_acct, 'isWriter' => $isWriter])
@if ($loop->iteration % 2 === 0)
@endif @endforeach
@endif
@stop @push('footer_js') @endpush