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

{{ __('Favourites') }}

@if(auth()->user()->favourites()->wherePivot('valid', '=', 1)->count())
@foreach(auth()->user()->favourites as $profile) @include('_components.partials.profile-box', ['profile' => $profile, 'show4' => true]) @endforeach
@else
{{ __('You haven\'t added anyone to your list of favourites.') }}
@endif
@endsection