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

Broadcasting List

@if (\Session::has('success'))
  • {!! \Session::get('success') !!}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($broadcast) @foreach($broadcast as $data) @endforeach @endif
Sr. No Title Type Target Actions
{{$i}} {{ucfirst($data->title ?? 'N/A')}} {{ucfirst($data->type ?? 'N/A')}} {{ $data->target === 'all' ? 'All Users' : 'Survey Based' }}
@endsection