@extends('layouts.app') @section('title', '歷次申請卡片查詢 - 閱讀卡管理平台') @section('content')
歷次申請卡片查詢
@if(in_array($role, ['admin', 'staff']))
@endif {{-- 學生/教師分頁標籤 --}} @if($tab == 'student') {{-- 學生班級列表 --}}
@foreach($results as $ban => $label) @endforeach
班級 操作
{{ $label }} 學生列表
@if(empty($results))

目前沒有班級資料

@endif @else {{-- 教師列表 --}}
@foreach($teachers as $tea) @endforeach
姓名 帳號 操作
{{ $tea['name'] }} {{ $tea['uid'] }} 卡片紀錄
@if(empty($teachers))

目前沒有教師資料

@endif @endif
@endsection