@extends('admin.layouts.app') @section('content')
Approve Group Registrations
@if(!isset($groups) || count($groups) < 1) No groups to approve. @else
@foreach($groups as $group) @endforeach
Group Name Coach(es) Email Country Town/City
{{$group->name}} @if(isset($group->coach_sec) && strlen($group->coach_sec) > 0) {{$group->coach}}, {{$group->coach_sec}} @else {{$group->coach}} @endif {{$group->email}} {{$group->country}} {{$group->city}} {{$group->participation_mode==1?"Online":"In person"}} Approve    Delete user
@endif
@stop