@extends('layouts.home') @section('title', 'Anfragen und Einladungen') @section('content')
Anfragen und Einladungen
@foreach($newsletters as $newsletter) Kennst du das Unternehmen @include('partials.account', ['account' => $newsletter->getSellerAccount(), 'long' => true]) ?
@endforeach @foreach($intermediaries as $intermediarie) @include('partials.account', ['account' => $intermediarie->account, 'long' => true]) möchte Sie als Empfehler für seine RECO.BONs engagieren.
@endforeach @foreach($invitations as $invitation) @include('partials.account', ['account' => $invitation->account, 'long' => true]) möchte für Sie als Empfehler tätig werden.
@endforeach @foreach($coupons as $coupon) @include('partials.account', ['account' => $coupon->template->user->account, 'long' => true]) bietet Ihnen einen RECO.BON an. @endforeach @if(count($invitations) == 0 && count($coupons) == 0 && count($intermediaries) == 0 && count($newsletters) == 0) Aktuell liegen keine unbeantwortete Anfragen oder Einladungen vor. @endif
@endsection