@extends('backendTools.layouts.backend') @section('title', 'LINE 解除綁定') @section('header') LINE 解除綁定 @endsection @section('content')
@csrf {{-- 如果是 Laravel 表單要記得csrf --}}
解除綁定
{{-- alert 區塊 --}} @if (!is_null($data['success'] ?? null)) @if ($data['success']) @else @endif @else @endif
{{-- role type --}}
{{-- uid --}}
會員 - 重複綁定清單
    @foreach ($data['bind_over'] as $bindId => $items)
    • @foreach ($items as $item)
    • UID: {{ $item['member_info_uid'] }} | memId: {{ $item['memId'] }} | 狀態: @if ($item['status'] == 1) 啟用 @else 停用 @endif
    • @endforeach
  • @endforeach
@endsection @section('footer')
@endsection @push('scripts') @endpush