@extends('layouts.app') @section('title') {{ __('Telegram Group') }} @endsection @section('admin') active @endsection @section('section.header')

{{ __('Cài đặt nhóm telegram để gửi thông báo') }}

@endsection @section('section.content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif

{{ __('Danh sách nhóm telegram') }}

@foreach ($groupLists as $item) @endforeach
{{ __('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') }}
{{ $item->id }} {{ $item->group_name }} {{ $item->username }} {{ $item->chat_id }} @if ($item->status == 1) Mở @else Đóng @endif {{ strtoupper($item->type) }} {{ $item->created_at }}
@endsection @section('scripts') @endsection @section('styles') @endsection