@extends('admin.layouts.master') @section('title') Quản lý Tài khoản Google Drive @endsection @section('content')

Danh sách Tài khoản Google Drive

Thêm mới
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@forelse($accounts as $account) @empty @endforelse
ID Tên Email Trạng thái Số lượng Data Ngày tạo Hành động
{{ $account->id }} {{ $account->name }} {{ $account->email }} @if($account->is_active) Hoạt động @else Tạm dừng @endif {{ $account->data()->count() }} {{ optional($account->created_at)->format('d/m/Y H:i') }} Sửa
@csrf @method('DELETE')
Chưa có tài khoản Google Drive nào.
@endsection