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

@lang('user.view_broadcast')

@lang('user.broadcast_details')

@lang('user.broadcast_name_des')
conversion_tracking == 1?'checked':''}} class="form-check-input" name="conversion_tracking" id="exampleCheck1" onclick="return false;">

@lang('user.recipients')

@lang('user.sent_to')

@lang('user.recipients_des')
@lang('user.recipients') {{$broadcast->contacts()->wherePivot('send',1)->count() + $broadcast->tags()->wherePivot('send',1)->count()}} @foreach ($broadcast->contacts()->wherePivot('send',1)->get() as $contact) {{(empty($contact->first_name) && empty($contact->last_name)) ? $contact->mobile : ($contact->first_name . ' ' . $contact->last_name) }} @endforeach @foreach ($broadcast->tags()->wherePivot('send',1)->get() as $tag) {{$tag->name}} @endforeach
@lang('user.recipients') {{$broadcast->contacts()->wherePivot('send',0)->count() + $broadcast->tags()->wherePivot('send',0)->count()}} @foreach ($broadcast->contacts()->wherePivot('send',0)->get() as $contact) {{(empty($contact->first_name) && empty($contact->last_name)) ? $contact->mobile : ($contact->first_name . ' ' . $contact->last_name) }} @endforeach @foreach ($broadcast->tags()->wherePivot('send',0)->get() as $tag) {{$tag->name}} @endforeach

@lang('user.note')

@lang('notes.broadcasts_note')

@endsection @section('script') @endsection