@extends('layouts.admin') @section('title', '用户组: ' . $user_group->name) @section('content')

{{ $user_group->name }}

编辑此用户组
此用户组的 ID 为 {{ $user_group->id }}。 @if ($user_group->discount == 100) 不享受折扣 @else 享受 {{ $user_group->discount }}% 的折扣 @endif , @if ($user_group->exempt) 并且有暂停 / 终止豁免权 @else 并且没有暂停 / 终止豁免权 @endif 。 {{-- 用户列表 --}}
@foreach ($users as $user) @endforeach
ID 用户名 邮箱 余额 注册时间 操作
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->balance }} 元 {{ $user->created_at }} 编辑
@endsection