@extends('layouts.app') @section('link') @endsection @section('content')
@include('shared.messages')

{{__('texte.newsletters_arr.recipients.recipients')}}


@foreach ($newsletter->recipients as $recipient) @endforeach
{{__('texte.newsletters_arr.recipients.object')}} {{__('texte.newsletters_arr.recipients.name')}} {{__('texte.newsletters_arr.recipients.email')}} {{__('texte.newsletters_arr.recipients.sent_at')}}
{{$recipient->user->object->id}} {{$recipient->user->name}} {{$recipient->user->email }} {{date("d.m.Y H:i",strtotime($recipient->sent_at))}}
@endsection