@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@if (Session::has('error'))
{{ Session::get('error') }}
@endif
| {{ __('ID') }} |
{{ __('Tên nhóm') }} |
{{ __('Tên đối tác') }} |
{{ __('Chat ID') }} |
{{ __('Trạng thái') }} |
{{ __('Loại') }} |
{{ __('Thời gian thêm') }} |
{{ __('Thao tác') }} |
@foreach ($groupLists as $item)
| {{ $item->id }} |
{{ $item->group_name }} |
{{ $item->username }} |
{{ $item->chat_id }} |
@if ($item->status == 1)
Mở
@else
Đóng
@endif
|
{{ strtoupper($item->type) }} |
{{ $item->created_at }} |
|
@endforeach
@endsection
@section('scripts')
@endsection
@section('styles')
@endsection