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