@extends('layouts.admin') @section('content') @php $theme = request()->cookie('theme', 'dark-blue'); $isLight = in_array($theme, ['light-blue', 'light-green']); $cardBg = $isLight ? 'bg-white' : 'bg-gray-800'; $textPrimary = $isLight ? 'text-gray-900' : 'text-gray-200'; $textSecondary = $isLight ? 'text-gray-600' : 'text-gray-400'; $borderColor = $isLight ? 'border-gray-200' : 'border-gray-700'; $thBg = $isLight ? 'bg-gray-50' : 'bg-gray-700'; $inputBg = $isLight ? 'bg-white' : 'bg-gray-700'; $inputBorder = $isLight ? 'border-gray-300' : 'border-gray-600'; @endphp {{-- Toast 通知 --}} @if(session('success'))
{{ session('success') }}
@endif

會員等級設定

@forelse($tiers as $tier) @empty @endforelse
名稱 年費 折扣 點數倍率 預設 操作
{{ $tier->name }} {{ $tier->annual_fee == 0 ? '免費' : '$'.number_format($tier->annual_fee) }} {{ $tier->discount_rate * 100 }}% {{ $tier->point_multiplier }}x @if($tier->is_default) 預設 @endif
@csrf @method('DELETE')
尚無資料
{{-- Create Modal --}} @endsection