下載

@extends('layouts.master')
@section('title', 'memberList')
@section('content')

<h1 style="text-align:center">會員清單</h1>
<div class="container">
    <div class="row"> 
        <table class="table table-hover">
            <thead>
                <tr>
                <th scope="col">#</th>
                <th scope="col">帳號</th>
                <th scope="col">姓名</th>
                <th scope="col">身分</th>
                </tr>
            </thead>
            <tbody>
            @foreach($users as $index => $row) 
                <tr>
                    <th scope="row">{{ $index+1 }}</th>
                    <td>{{  $row->acc  }}</td>
                    <td>{{  $row->name  }}</td>
                    <td>{{  $row->role  }}</td>
                </tr>
            @endforeach
            <!-- 或者是用forelse -->
            @forelse($users as $index => $row) 
                <tr>
                    <th scope="row">{{ $index+1 }}</th>
                    <td>{{  $row->acc  }}</td>
                    <td>{{  $row->name  }}</td>
                    <td>{{  $row->role  }}</td>
                </tr>
            @empty
                <tr>沒有資料</tr>
            @endforelse
            </tbody>
        </table>
    </div>
</div>

@stop