@extends('layouts-v2.app') @section('content')

Pull dữ liệu bảng từ DB tenant về DB gốc

Chọn tenant, bảng và chế độ làm sạch trước khi sync. Lưu ý: thao tác này có thể xoá dữ liệu hiện có trong DB gốc.

@if ($errors->any())
Có lỗi xảy ra:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@endsection