@extends('layouts.app')
@section('content')
@if(!$editors->isEmpty())
@foreach($editors as $favoriteEditor)
@if (isset($favoriteEditor))
-
{{$favoriteEditor->username}}
@if($favoriteEditor->isAvailable())
Available
Submit Document
@else
Unavailable
@if(isset($favoriteEditor->available_from))
Available {{$favoriteEditor->available_from->format('m/d/Y h:ia')}}
@endif
@endif
@endif
@endforeach
@else
You currently do not have any favorite or recent editors.
@endif
@endsection