@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title' => __('Group List'), 'buttons' =>[ [ 'name'=>__('Create Group'), 'url'=>'#', 'components'=>'data-toggle="modal" data-target="#create-modal" ', 'is_button'=>true ], [ 'name'=>__('Contact List'), 'url'=> route('user.contact.index'), ], ]]) @endsection @section('content')
{{ $total_groups ?? 0 }}

{{ __('Total Groups') }}

{{ $limit ?? 0 }}

{{ __('Groups statics') }}

@if(count($groups ?? []) > 0)
@foreach($groups ?? [] as $group) @endforeach
{{ __('Group Name') }} {{ __('Total Contact Numbers') }} {{ __('Action') }}
{{ $group->name }} {{ $group->groupcontacts_count }}
{{ $groups->links('vendor.pagination.bootstrap-4') }}
@else
{{ __('Opps There Is No Groups Found....') }}
@endif
@endsection @push('js') @endpush