@extends('general.index', $setup) @section('contenttop')
@endsection @section('thead') {{ __('Name') }} {{ __('Phone') }} {{ __('Create at') }} {{ __('Groups') }} {{ __('crud.actions') }} @endsection @section('tbody') @foreach ($setup['items'] as $item) {{ $item->name }} {{ $item->phone }} {{ $item->created_at->format('Y-m-d') }} @foreach ($item->groups as $group) {{ $group->name }} @endforeach {{ __('Start chat')}} @endforeach @endsection @section('js') @include('contacts::contacts.scripts') @endsection