@extends('layouts.base') @section('title', '会员统计') @section('content')
@include('layouts.tabs')
会员统计
@foreach($member_count as $key => $item)
{{ $item['first_name'] }} {{ $item['second_name'] }} {{ $item['third_name'] }}
{{ $item['first_value'] }} {{ $item['second_value'] }}
{{ $item['third_value'] }}
@endforeach
@endsection