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

Groups

{!! Form::open(['url' => 'backdoor/groups/search', 'class' => 'form-inline', 'role' => 'form', 'autocomplete' => 'off']) !!}
{!! Form::text('search', $search, ['class' => 'form-control', 'placeholder' => 'search groups', 'required']) !!}
{!! Form::button('', ['class' => 'btn btn-outline-secondary', 'type' => 'submit', 'title' => 'Search']) !!}
{!! Form::close() !!}
@if($groups->isEmpty())
No record(s) found.
@else @foreach($groups as $group) @endforeach
Group Name Number of Recipients Status
{{ $group->g_name }} {{ $group->contact_groups->count() == 0 ? '' : $group->contact_groups->count() }} {!! $group->is_active == 1 ? '' : '' !!}
@if($groups->render()) @endif @endif
@stop